﻿/* =========================================================================
   1. CORE & IDENTITY (EASY CONTA THEME)
   ========================================================================= */
:root {
    --ec-bg: #0b1120; /* Dark Navy Profundo */
    --ec-cyan: #26C6DA; /* Cian del Logo */
    --ec-green: #8BC34A; /* Verde del Logo */
    --ec-yellow: #FFCA28; /* Amarillo del Logo */
    --ec-text: #cbd5e1; /* Texto gris claro */
    --ec-white: #ffffff;
}

body {
    background-color: var(--ec-bg);
    color: var(--ec-text);
    font-family: 'Inter', 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Entrada controlada: la interfaz no aparece a medias mientras termina de cargar. */
.ec-startup-loader {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 24px;
    color: #f7fbff;
    background:
        radial-gradient(circle at 18% 12%, rgba(41, 191, 228, .2), transparent 32rem),
        radial-gradient(circle at 82% 82%, rgba(140, 198, 63, .17), transparent 30rem),
        linear-gradient(145deg, #071321 0%, #0b2132 58%, #10291f 125%);
    opacity: 1;
    visibility: visible;
    transition: opacity .5s ease, visibility .5s ease;
}

.ec-startup-loader.is-ready { opacity: 0; visibility: hidden; pointer-events: none; }

.ec-startup-loader__ambient {
    position: absolute;
    width: min(72vw, 840px);
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, .055);
    border-radius: 50%;
    box-shadow: 0 0 0 90px rgba(255, 255, 255, .015), 0 0 0 180px rgba(255, 255, 255, .01);
    animation: startupAmbient 8s linear infinite;
}

.ec-startup-loader__card {
    position: relative;
    width: min(500px, 100%);
    display: grid;
    justify-items: center;
    padding: clamp(30px, 6vw, 54px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 34px;
    text-align: center;
    background: rgba(7, 21, 33, .7);
    box-shadow: 0 35px 100px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px);
}

.ec-startup-loader__mark {
    position: relative;
    width: 170px;
    min-height: 86px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    padding: 8px 13px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 18px 45px rgba(41, 191, 228, .18);
}

.ec-startup-loader__mark span {
    position: absolute;
    inset: -10px;
    border: 1px solid rgba(80, 211, 222, .38);
    border-radius: 31px;
    animation: startupMark 1.8s ease-in-out infinite;
}

.ec-startup-loader__mark img { width: 100%; max-height: 70px; object-fit: contain; }
.ec-startup-loader__card > small { color: #8fe8f7; font-size: .68rem; font-weight: 900; letter-spacing: .2em; }
.ec-startup-loader__card h1 { max-width: 390px; margin: 14px 0 10px; font-size: clamp(1.75rem, 6vw, 2.75rem); line-height: 1.03; letter-spacing: -.045em; font-weight: 900; }
.ec-startup-loader__card p { max-width: 390px; margin: 0; color: #b9c9d4; font-size: .9rem; line-height: 1.65; }

.ec-startup-loader__progress {
    width: min(270px, 82%);
    height: 5px;
    overflow: hidden;
    margin-top: 28px;
    border-radius: 99px;
    background: rgba(255, 255, 255, .09);
}

.ec-startup-loader__progress i {
    width: 45%;
    height: 100%;
    display: block;
    border-radius: inherit;
    background: linear-gradient(90deg, #29bfe4, #a1e84b);
    box-shadow: 0 0 18px rgba(41, 191, 228, .55);
    animation: startupProgress 1.45s ease-in-out infinite;
}

#easyconta-startup-retry {
    margin-top: 22px;
    padding: 11px 20px;
    border: 0;
    border-radius: 13px;
    color: #08213a;
    background: linear-gradient(135deg, #71e4ef, #a1e84b);
    font-weight: 900;
}

.ec-startup-loader.has-error .ec-startup-loader__progress { display: none; }

@keyframes startupProgress {
    0% { transform: translateX(-120%); }
    55%, 100% { transform: translateX(220%); }
}

@keyframes startupMark {
    50% { transform: scale(1.045); border-color: rgba(161, 232, 75, .5); box-shadow: 0 0 25px rgba(41, 191, 228, .12); }
}

@keyframes startupAmbient { to { transform: rotate(360deg); } }

/* NAVBAR GLASS */
.navbar-glass {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(11, 17, 32, 0.8) !important;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(38, 198, 218, 0.2);
}

.nav-link {
    color: var(--ec-white) !important;
    font-weight: 600;
    transition: 0.3s;
}

    .nav-link:hover {
        color: var(--ec-green) !important;
    }

/* BOTÓN CALL TO ACTION */
.btn-ec-primary {
    background: linear-gradient(135deg, var(--ec-cyan), var(--ec-green));
    color: #000;
    font-weight: 800;
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(38, 198, 218, 0.4);
}

    .btn-ec-primary:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(139, 195, 74, 0.6);
        color: #000;
    }

/* TITULOS CON GRADIENTE */
.text-gradient {
    background: linear-gradient(to right, var(--ec-cyan), var(--ec-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ec-section-light {
    background: #f8fafc;
    position: relative;
}

.ec-section-white {
    background: #ffffff;
    position: relative;
}

.section-kicker {
    color: #0284c7;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-kicker.green {
    color: #65a30d;
}

.section-kicker.yellow {
    color: #d97706;
}

.section-title {
    color: #0f172a;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 0;
    margin: 10px auto 0;
    max-width: 850px;
}

.section-copy {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 680px;
    margin: 16px auto 0;
}

.demo-tag {
    display: inline-flex;
    width: fit-content;
    padding: 3px 8px;
    border-radius: 999px;
    background: #fff7ed;
    color: #c2410c;
    border: 1px solid #fed7aa;
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonial-card,
.price-card,
.sat-search-tool,
.director-card,
.ec-modal-light {
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.ec-modal-light {
    color: #0f172a;
}

.ec-modal-light h1,
.ec-modal-light h2,
.ec-modal-light h3,
.ec-modal-light h4,
.ec-modal-light h5 {
    color: #0f172a;
}

.testimonial-card {
    height: 100%;
    padding: 24px;
}

.testimonial-card p {
    color: #334155;
    font-weight: 600;
    line-height: 1.6;
    margin: 18px 0 24px;
}

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

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #29BFE4, #8CC63F);
    color: #ffffff;
    font-weight: 900;
}

.testimonial-person strong,
.testimonial-person span {
    display: block;
}

.testimonial-person strong {
    color: #0f172a;
}

.testimonial-person span {
    color: #64748b;
    font-size: 0.85rem;
}

.price-card {
    height: 100%;
    padding: 28px;
    transition: 0.3s;
}

.price-card.featured {
    border-color: rgba(41, 191, 228, 0.5);
    box-shadow: 0 24px 50px rgba(41, 191, 228, 0.12);
    transform: translateY(-8px);
}

.price-card h3 {
    color: #0f172a;
    font-size: 1.45rem;
    font-weight: 900;
    margin-top: 16px;
}

.price {
    color: #0f172a;
    font-size: 2.35rem;
    font-weight: 900;
    margin: 10px 0;
}

.price span {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 700;
}

.price-card p {
    color: #64748b;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 22px 0;
    display: grid;
    gap: 10px;
}

.price-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #334155;
    font-weight: 700;
}

.price-card li i {
    color: #16a34a;
    font-size: 1.1rem;
}

.price-card button,
.btn-ec-solid {
    width: 100%;
    border: 0;
    border-radius: 999px;
    padding: 12px 18px;
    background: linear-gradient(135deg, #29BFE4, #8CC63F);
    color: #ffffff;
    font-weight: 900;
}

.sat-search-tool {
    padding: 28px;
}

.sat-search-tool label {
    display: block;
    color: #0f172a;
    font-weight: 900;
    margin: 18px 0 8px;
}

.sat-search-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.sat-search-row input {
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 12px 14px;
}

.sat-search-row button {
    border: 0;
    border-radius: 12px;
    padding: 12px 18px;
    background: #0f172a;
    color: #ffffff;
    font-weight: 900;
}

.sat-results {
    margin-top: 16px;
    display: grid;
    gap: 10px;
}

.sat-results div {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    gap: 12px;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 12px 14px;
}

.sat-results strong {
    color: #0284c7;
}

.sat-results span {
    color: #334155;
    font-weight: 700;
}

.sat-results em {
    color: #16a34a;
    font-style: normal;
    font-weight: 900;
}

.director-card {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 22px;
    align-items: center;
    padding: 18px;
}

.director-card img {
    width: 150px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 18px;
}

.director-card h3 {
    color: #0f172a;
    font-weight: 900;
    margin: 12px 0 4px;
}

.director-card p {
    color: #64748b;
    font-weight: 700;
    margin-bottom: 14px;
}

.director-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0284c7;
    font-weight: 900;
    text-decoration: none;
}

.login-logo {
    max-width: 190px;
    background: #ffffff;
    border-radius: 14px;
    padding: 10px 18px;
}

.ec-login-modal {
    background: radial-gradient(circle at top right, #1e293b, #0b1120 60%);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 26px;
}

.login-label {
    color: #cbd5e1;
    font-size: 0.86rem;
    font-weight: 800;
    margin-bottom: 7px;
}

.login-input {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.06);
    color: #ffffff;
    border-radius: 14px;
    padding: 13px 14px;
}

.btn-login-submit {
    width: 100%;
    border: 0;
    border-radius: 999px;
    padding: 13px 18px;
    background: linear-gradient(135deg, #29BFE4, #8CC63F);
    color: #ffffff;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.forgot-link {
    display: block;
    color: #8CC63F;
    text-align: center;
    margin-top: 18px;
    font-weight: 800;
    text-decoration: none;
}

.login-session-card {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    background: rgba(255,255,255,0.07);
    margin-bottom: 18px;
}

.login-session-card .material-symbols-outlined {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #0f172a;
    background: linear-gradient(135deg, #ffffff, #bbf7d0);
}

.login-session-card strong,
.login-session-card small {
    display: block;
}

.login-session-card strong {
    color: #ffffff;
    font-weight: 900;
}

.login-session-card small {
    color: #94a3b8;
    font-weight: 800;
    margin-top: 3px;
}

.mockup-modal .modal-body {
    overflow: hidden;
}

.mock-dashboard,
.security-panel,
.cloud-vault,
.sat-report,
.payroll-grid,
.doc-preview,
.compliance-doc,
.csf-doc,
.traffic-panel {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 22px;
}

.mock-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.mock-kpis div,
.payroll-summary {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px;
}

.mock-kpis span,
.payroll-summary span {
    display: block;
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.mock-kpis strong,
.payroll-summary strong {
    display: block;
    color: #0f172a;
    font-size: 1.7rem;
    font-weight: 900;
}

.mock-kpis em {
    color: #16a34a;
    font-style: normal;
    font-weight: 900;
}

.mock-kpis em.red {
    color: #ef4444;
}

.mock-chart-bars {
    height: 260px;
    display: flex;
    align-items: end;
    gap: 18px;
    padding: 28px;
    margin-top: 18px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.mock-chart-bars span {
    flex: 1;
    min-width: 30px;
    border-radius: 10px 10px 0 0;
    background: linear-gradient(180deg, #29BFE4, #8CC63F);
}

.mock-table {
    display: grid;
    gap: 8px;
}

.mock-table > div {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px;
}

.mock-table-head {
    background: #0f172a !important;
    color: #ffffff;
    font-weight: 900;
}

.mock-table strong {
    color: #16a34a;
}

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

.security-panel > i {
    color: #29BFE4;
    font-size: 4rem;
}

.security-panel h4,
.doc-preview h4,
.compliance-doc h4,
.csf-doc h4 {
    color: #0f172a;
    font-weight: 900;
}

.security-list,
.cloud-vault,
.traffic-panel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.security-list span,
.cloud-vault div,
.traffic {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 14px;
    font-weight: 800;
}

.cloud-vault i {
    color: #0284c7;
    font-size: 2rem;
}

.cloud-vault span,
.cloud-vault strong {
    display: block;
}

.report-filter {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.report-filter span {
    padding: 8px 12px;
    background: #e0f2fe;
    color: #0369a1;
    border-radius: 999px;
    font-weight: 900;
}

.payroll-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.payroll-donut {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.payroll-donut span {
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border-left: calc(var(--p) * 1px) solid #8CC63F;
    border-radius: 12px;
    padding: 12px;
    color: #334155;
    font-weight: 900;
}

.doc-preview {
    max-width: 620px;
    margin: 0 auto;
    background: #ffffff;
}

.doc-stamp {
    width: fit-content;
    background: #0f172a;
    color: #ffffff;
    border-radius: 10px;
    padding: 8px 12px;
    font-weight: 900;
    margin-bottom: 18px;
}

.doc-preview.teal .doc-stamp {
    background: #0284c7;
}

.doc-preview.green .doc-stamp {
    background: #16a34a;
}

.doc-lines {
    height: 120px;
    margin: 18px 0;
    background: repeating-linear-gradient(to bottom, #e2e8f0 0 1px, transparent 1px 24px);
}

.status-ok {
    display: inline-flex;
    background: #dcfce7;
    color: #16a34a;
    border: 1px solid #bbf7d0;
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 900;
    margin-bottom: 12px;
}

.csf-doc {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 22px;
    align-items: center;
}

.csf-qr {
    aspect-ratio: 1;
    background:
        linear-gradient(90deg, #0f172a 12px, transparent 12px) 0 0 / 24px 24px,
        linear-gradient(#0f172a 12px, transparent 12px) 0 0 / 24px 24px,
        #ffffff;
    border: 10px solid #ffffff;
    box-shadow: inset 0 0 0 1px #cbd5e1;
}

.traffic strong,
.traffic span {
    display: block;
}

.light-green {
    border-top: 6px solid #22c55e;
}

.light-yellow {
    border-top: 6px solid #f59e0b;
}

.light-red {
    border-top: 6px solid #ef4444;
}

@media (max-width: 768px) {
    .mock-kpis,
    .security-list,
    .cloud-vault,
    .traffic-panel,
    .payroll-grid,
    .payroll-donut,
    .director-card,
    .sat-results div {
        grid-template-columns: 1fr;
    }

    .sat-search-row {
        grid-template-columns: 1fr;
    }

    .director-card img {
        width: 100%;
        max-width: 220px;
    }
}

/* =========================================================================
   PREMIUM POLISH - NEW SECTIONS AND MOCKUPS
   ========================================================================= */
.ec-section-light {
    background:
        radial-gradient(circle at 10% 10%, rgba(41, 191, 228, 0.13), transparent 28%),
        radial-gradient(circle at 90% 24%, rgba(140, 198, 63, 0.12), transparent 24%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
}

.ec-section-white {
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px),
        linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        #ffffff;
    background-size: 46px 46px;
    overflow: hidden;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(41, 191, 228, 0.10);
    border: 1px solid rgba(41, 191, 228, 0.22);
    box-shadow: 0 8px 22px rgba(41, 191, 228, 0.08);
}

.section-kicker.green {
    background: rgba(140, 198, 63, 0.11);
    border-color: rgba(140, 198, 63, 0.24);
}

.section-kicker.yellow {
    background: rgba(245, 168, 0, 0.11);
    border-color: rgba(245, 168, 0, 0.22);
}

.section-title {
    letter-spacing: 0;
    text-wrap: balance;
}

.section-copy {
    text-wrap: pretty;
}

.testimonial-card,
.price-card,
.sat-search-tool,
.director-card,
.ec-modal-light {
    border-radius: 24px;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, rgba(41, 191, 228, 0.38), rgba(140, 198, 63, 0.25), rgba(245, 168, 0, 0.18)) border-box;
    border: 1px solid transparent;
    box-shadow: 0 22px 52px rgba(15, 23, 42, 0.09);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before,
.price-card::before,
.sat-search-tool::before,
.director-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 92% 0%, rgba(41, 191, 228, 0.13), transparent 35%),
        radial-gradient(circle at 0% 100%, rgba(140, 198, 63, 0.11), transparent 34%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.testimonial-card > *,
.price-card > *,
.sat-search-tool > *,
.director-card > * {
    position: relative;
    z-index: 1;
}

.testimonial-card,
.price-card,
.director-card {
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s ease;
}

.testimonial-card:hover,
.price-card:hover,
.director-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 34px 76px rgba(15, 23, 42, 0.14);
}

.testimonial-card:hover::before,
.price-card:hover::before,
.sat-search-tool:hover::before,
.director-card:hover::before {
    opacity: 1;
}

.testimonial-card {
    padding: 28px;
}

.testimonial-card p {
    min-height: 104px;
    font-size: 0.98rem;
}

.testimonial-avatar {
    box-shadow: 0 12px 24px rgba(41, 191, 228, 0.25);
}

.price-card {
    padding: 32px;
}

.price-card.featured {
    box-shadow: 0 34px 78px rgba(41, 191, 228, 0.18);
    transform: translateY(-10px);
}

.price-card.featured::after {
    content: "Más popular";
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #0f172a;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.price-card.featured:hover {
    transform: translateY(-14px);
}

.price {
    background: linear-gradient(135deg, #0f172a 0%, #0284c7 48%, #65a30d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-card button,
.btn-ec-solid,
.btn-login-submit {
    box-shadow: 0 14px 28px rgba(41, 191, 228, 0.26);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-card button:hover,
.btn-ec-solid:hover,
.btn-login-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 36px rgba(140, 198, 63, 0.32);
}

.pricing-proof-strip,
.director-contact-banner,
.tool-mini-metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pricing-proof-strip {
    max-width: 900px;
    margin-inline: auto;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(14px);
}

.pricing-proof-strip span,
.tool-mini-metrics span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #334155;
    font-weight: 900;
    font-size: 0.9rem;
    padding: 9px 13px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

.pricing-proof-strip i {
    color: #16a34a;
    font-size: 1.1rem;
}

.tool-mini-metrics {
    justify-content: flex-start;
    margin-top: 22px;
}

.tool-mini-metrics span {
    border-radius: 16px;
}

.tool-mini-metrics strong {
    color: #0284c7;
}

.director-contact-banner {
    max-width: 780px;
    margin-inline: auto;
    justify-content: flex-start;
    padding: 16px 18px;
    border-radius: 20px;
    background:
        radial-gradient(circle at top right, rgba(37, 211, 102, 0.16), transparent 36%),
        #0f172a;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.18);
}

.director-contact-banner i {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #ffffff;
    font-size: 1.5rem;
}

.director-contact-banner strong,
.director-contact-banner span {
    display: block;
}

.director-contact-banner strong {
    color: #ffffff;
    font-weight: 900;
}

.director-contact-banner span {
    color: #94a3b8;
    font-size: 0.92rem;
}

.sat-search-tool {
    padding: 32px;
    background:
        radial-gradient(circle at top right, rgba(41, 191, 228, 0.12), transparent 38%),
        linear-gradient(145deg, rgba(255,255,255,0.96), rgba(248,250,252,0.98));
}

.sat-search-row input {
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.sat-search-row input:focus {
    border-color: rgba(41, 191, 228, 0.6);
    box-shadow: 0 0 0 4px rgba(41, 191, 228, 0.12);
}

.sat-search-row button {
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.18);
    transition: transform 0.25s ease, background 0.25s ease;
}

.sat-search-row button:hover {
    transform: translateY(-2px);
    background: #1e293b;
}

.sat-results div {
    background: rgba(255,255,255,0.88);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.045);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.sat-results div:hover {
    transform: translateX(6px);
    border-color: rgba(41, 191, 228, 0.36);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.director-card {
    padding: 22px;
}

.director-card img {
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.18);
    filter: saturate(1.04) contrast(1.02);
}

.director-card a {
    padding: 9px 13px;
    border-radius: 999px;
    background: #e0f2fe;
    transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.director-card a:hover {
    background: #dcfce7;
    color: #16a34a;
    transform: translateX(4px);
}

.modal-dialog-scrollable .ec-contact-form {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

.ec-contact-form .modal-body {
    padding-top: 4px !important;
    overflow-y: auto;
}

.ec-contact-form .form-label {
    margin-bottom: 7px;
    color: #24344c;
    font-size: .78rem;
    font-weight: 850;
}

.ec-contact-form .form-control,
.ec-contact-form .form-select {
    min-height: 51px;
    padding: 12px 14px;
    border: 1px solid #cdd9e4;
    border-radius: 14px;
    color: #12243d;
    background-color: #f9fbfd;
    box-shadow: inset 0 1px 2px rgba(15, 35, 58, .035);
    font-size: .9rem;
    font-weight: 600;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.ec-contact-form textarea.form-control { min-height: 118px; resize: vertical; }
.ec-contact-form .form-control::placeholder { color: #8a98a8; font-weight: 500; }
.ec-contact-form .form-control:hover,
.ec-contact-form .form-select:hover { border-color: #a6bdcd; background-color: #fff; }
.ec-contact-form .form-control:focus,
.ec-contact-form .form-select:focus {
    border-color: #2baed1;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(41, 191, 228, .12), 0 10px 25px rgba(23, 76, 100, .06);
}
.ec-contact-form .form-control.invalid:not(:focus),
.ec-contact-form .form-select.invalid:not(:focus) { border-color: #df7688; background: #fff9fa; }

.ec-contact-field > .validation-message,
.ec-contact-field__meta .validation-message {
    display: block;
    margin-top: 6px;
    color: #b1324a;
    font-size: .7rem;
    font-weight: 750;
}

.ec-contact-field__meta { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.ec-contact-field__meta > small { flex: 0 0 auto; margin-top: 6px; color: #7c8998; font-size: .67rem; }

.ec-contact-privacy {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 18px 0 0;
    padding: 11px 13px;
    border: 1px solid #d9ebe2;
    border-radius: 13px;
    color: #47705c;
    background: #f3fcf7;
    font-size: .72rem;
    font-weight: 700;
}
.ec-contact-privacy .material-symbols-outlined { color: #15855c; font-size: 1rem; }

.ec-contact-status {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: .76rem;
}
.ec-contact-status > div { display: grid; gap: 3px; }
.ec-contact-status small { font-family: ui-monospace, SFMono-Regular, Consolas, monospace; }
.ec-contact-status.is-error { color: #9f2e44; border: 1px solid #f0bcc7; background: #fff2f4; }
.ec-contact-status.is-success { color: #156740; border: 1px solid #bfe4d1; background: #effcf5; }

.ec-contact-footer { flex: 0 0 auto; align-items: center; background: #fff; }
.ec-contact-footer .btn-ec-solid { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-width: 205px; }
.ec-contact-footer .btn-ec-solid .material-symbols-outlined { font-size: 1.1rem; }
.ec-contact-footer .btn-ec-solid:disabled { opacity: .62; cursor: wait; }
.ec-contact-footer .btn-ec-solid:disabled .material-symbols-outlined { animation: contactSpin 1s linear infinite; }
.ec-contact-whatsapp { display: inline-flex; align-items: center; gap: 7px; margin-right: auto; color: #168654; font-size: .78rem; font-weight: 850; text-decoration: none; }
.ec-contact-whatsapp:hover { color: #0d6940; }

.ec-contact-success {
    min-height: 290px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px;
    text-align: center;
}
.ec-contact-success > span { width: 72px; height: 72px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 24px; color: #0d7049; background: linear-gradient(135deg, #d8fbeb, #eefdca); font-size: 2.3rem; }
.ec-contact-success h4 { color: #13243b; font-weight: 900; }
.ec-contact-success p { max-width: 510px; color: #657387; line-height: 1.65; }

.ec-contact-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}

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

.ec-login-modal {
    background:
        radial-gradient(circle at top right, rgba(41, 191, 228, 0.23), transparent 36%),
        radial-gradient(circle at bottom left, rgba(140, 198, 63, 0.15), transparent 32%),
        linear-gradient(145deg, #0f172a, #070b14 70%);
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.48);
}

.login-input {
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.login-input:focus {
    border-color: rgba(41, 191, 228, 0.55);
    box-shadow: 0 0 0 4px rgba(41, 191, 228, 0.12);
}

.mockup-modal {
    box-shadow: 0 36px 90px rgba(15, 23, 42, 0.22);
}

.mockup-modal .modal-header {
    padding: 24px 28px 10px;
}

.mockup-modal .modal-body {
    padding: 8px 28px 28px;
}

.mock-dashboard,
.security-panel,
.cloud-vault,
.sat-report,
.payroll-grid,
.doc-preview,
.compliance-doc,
.csf-doc,
.traffic-panel {
    border-radius: 24px;
    background:
        linear-gradient(#f8fafc, #f8fafc) padding-box,
        linear-gradient(135deg, rgba(41, 191, 228, 0.28), rgba(140, 198, 63, 0.22)) border-box;
    border: 1px solid transparent;
    padding: 26px;
}

.mock-kpis div,
.payroll-summary {
    background:
        radial-gradient(circle at top right, rgba(41, 191, 228, 0.10), transparent 48%),
        #ffffff;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

.mock-chart-bars {
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px),
        linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
        #ffffff;
    background-size: 42px 42px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

.mock-chart-bars span {
    box-shadow: 0 10px 22px rgba(41, 191, 228, 0.18);
}

.mock-table > div,
.security-list span,
.cloud-vault div,
.traffic,
.payroll-donut span {
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.security-panel {
    background:
        radial-gradient(circle at 50% 0%, rgba(41, 191, 228, 0.14), transparent 40%),
        #f8fafc;
}

.security-panel > i,
.cloud-vault i {
    filter: drop-shadow(0 10px 18px rgba(41, 191, 228, 0.24));
}

.security-list span,
.cloud-vault div,
.traffic {
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.security-list span:hover,
.cloud-vault div:hover,
.traffic:hover {
    transform: translateY(-4px);
    border-color: rgba(41, 191, 228, 0.34);
}

.report-filter span {
    border: 1px solid #bae6fd;
}

.doc-preview {
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px),
        #ffffff;
    background-size: 34px 34px;
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.10);
}

.doc-stamp {
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.18);
}

.compliance-doc {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        radial-gradient(circle at 50% 15%, rgba(140, 198, 63, 0.18), transparent 36%),
        #f8fafc;
}

.compliance-doc::before {
    content: "✓";
    width: 78px;
    height: 78px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #22c55e, #8CC63F);
    color: #ffffff;
    font-size: 2.4rem;
    font-weight: 900;
    box-shadow: 0 18px 36px rgba(34, 197, 94, 0.25);
    margin-bottom: 18px;
}

.csf-doc {
    background:
        radial-gradient(circle at right, rgba(41, 191, 228, 0.12), transparent 34%),
        #f8fafc;
}

.csf-qr {
    border-radius: 14px;
}

.light-green {
    background: linear-gradient(180deg, #f0fdf4, #ffffff);
}

.light-yellow {
    background: linear-gradient(180deg, #fffbeb, #ffffff);
}

.light-red {
    background: linear-gradient(180deg, #fef2f2, #ffffff);
}

.ec-ai-shell {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1080;
    font-family: 'Inter', sans-serif;
}

.ec-ai-launcher {
    width: 58px;
    min-height: 58px;
    border: 1px solid rgba(41, 191, 228, 0.28);
    border-radius: 999px;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 0;
    padding: 9px;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(3, 105, 161, 0.92)),
        radial-gradient(circle at top left, rgba(140, 198, 63, 0.42), transparent 40%);
    box-shadow: 0 22px 58px rgba(15, 23, 42, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ec-ai-launcher:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.34);
}

.ec-ai-launcher .material-symbols-outlined {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #0f172a;
    background: linear-gradient(135deg, #ffffff, #bbf7d0);
}

.ec-ai-launcher strong {
    display: none;
}

.ec-ai-launcher small {
    display: none;
}

.ec-ai-panel {
    width: min(420px, calc(100vw - 28px));
    height: min(680px, calc(100vh - 36px));
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 28px;
    overflow: hidden;
    display: grid;
    grid-template-rows: auto auto 1fr auto auto;
    color: #0f172a;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, rgba(41, 191, 228, 0.55), rgba(140, 198, 63, 0.42), rgba(245, 168, 0, 0.36)) border-box;
    box-shadow: 0 34px 96px rgba(15, 23, 42, 0.28);
}

.ec-ai-header {
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    background:
        radial-gradient(circle at top right, rgba(140, 198, 63, 0.28), transparent 34%),
        linear-gradient(135deg, #0f172a, #075985);
}

.ec-ai-header span {
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #a7f3d0;
}

.ec-ai-header h3 {
    margin: 4px 0 0;
    font-size: 1.25rem;
    font-weight: 900;
}

.ec-ai-header button,
.ec-ai-composer button {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.ec-ai-header button {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
}

.ec-ai-context {
    padding: 12px 14px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.ec-ai-context span {
    flex: 0 0 auto;
    padding: 7px 10px;
    border-radius: 999px;
    color: #0369a1;
    background: #e0f2fe;
    font-size: 0.72rem;
    font-weight: 800;
}

.ec-ai-messages {
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px),
        linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
        #ffffff;
    background-size: 32px 32px;
}

.ec-ai-message {
    width: min(88%, 340px);
    padding: 12px 14px;
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.ec-ai-message small {
    display: block;
    margin-bottom: 5px;
    font-size: 0.68rem;
    font-weight: 900;
    color: #64748b;
}

.ec-ai-message p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.5;
}

.ec-ai-message.assistant {
    align-self: flex-start;
    border: 1px solid #dbeafe;
    background: rgba(248, 250, 252, 0.94);
}

.ec-ai-message.user {
    align-self: flex-end;
    color: #ffffff;
    background: linear-gradient(135deg, #0284c7, #16a34a);
}

.ec-ai-message.user small {
    color: rgba(255, 255, 255, 0.74);
}

.ec-ai-message.thinking p {
    color: #0369a1;
    font-weight: 800;
}

.ec-ai-chips {
    padding: 12px 14px 4px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    background: #ffffff;
}

.ec-ai-chips button {
    flex: 0 0 auto;
    border: 1px solid #bae6fd;
    border-radius: 999px;
    padding: 8px 11px;
    color: #075985;
    background: #f0f9ff;
    font-size: 0.78rem;
    font-weight: 800;
}

.ec-ai-composer {
    padding: 12px 14px 16px;
    display: grid;
    grid-template-columns: 1fr 44px;
    gap: 10px;
    background: #ffffff;
}

.ec-ai-composer input {
    min-width: 0;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    padding: 0 14px;
    outline: none;
    font-size: 0.9rem;
}

.ec-ai-composer input:focus {
    border-color: rgba(41, 191, 228, 0.7);
    box-shadow: 0 0 0 4px rgba(41, 191, 228, 0.12);
}

.ec-ai-composer button {
    color: #ffffff;
    background: linear-gradient(135deg, #29BFE4, #8CC63F);
    box-shadow: 0 12px 24px rgba(41, 191, 228, 0.24);
}

@media (max-width: 768px) {
    .ec-ai-shell {
        right: 14px;
        bottom: 14px;
    }

    .ec-ai-panel {
        border-radius: 22px;
    }

    .price-card.featured,
    .price-card.featured:hover,
    .testimonial-card:hover,
    .price-card:hover,
    .director-card:hover {
        transform: none;
    }

    .section-kicker {
        font-size: 0.68rem;
        letter-spacing: 0.10em;
    }
}

/* =========================================================================
   PRODUCTION HERO SLIDER + LAUNCH MODULES
   ========================================================================= */
.ec-hero-media {
    position: relative;
    min-height: calc(100vh - 85px);
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
    background: #07111f;
    padding: 86px 0 34px;
}

.ec-hero-media__images,
.ec-hero-media__image,
.ec-hero-media__veil,
.ec-hero-media__grid {
    position: absolute;
    inset: 0;
}

.ec-hero-media__image {
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 900ms ease, transform 5200ms ease;
}

.ec-hero-media__image.active {
    opacity: 1;
    transform: scale(1);
}

.ec-hero-media__veil {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(7, 17, 31, 0.92) 0%, rgba(7, 17, 31, 0.72) 34%, rgba(7, 17, 31, 0.26) 72%, rgba(7, 17, 31, 0.44) 100%),
        linear-gradient(180deg, rgba(7, 17, 31, 0.2), rgba(7, 17, 31, 0.82));
}

.ec-hero-media__grid {
    z-index: 2;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.065) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 62px 62px;
    mask-image: linear-gradient(90deg, black 0%, transparent 75%);
    -webkit-mask-image: linear-gradient(90deg, black 0%, transparent 75%);
}

.ec-hero-media .container {
    z-index: 3;
}

.ec-hero-copy {
    max-width: 780px;
}

.ec-hero-meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ec-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #d9f99d;
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.ec-hero-pill i {
    font-size: 1rem;
}

.ec-hero-kicker {
    margin: 26px 0 12px;
    color: #67e8f9;
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.ec-hero-copy h1 {
    color: #ffffff;
    font-size: clamp(2.8rem, 6vw, 5.7rem);
    font-weight: 950;
    line-height: 0.98;
    margin: 0;
    letter-spacing: 0;
    max-width: 940px;
}

.ec-hero-copy h1 span {
    display: block;
    margin-top: 6px;
    background: linear-gradient(135deg, #67e8f9 0%, #bef264 48%, #facc15 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ec-hero-lead {
    max-width: 680px;
    color: #dbeafe;
    font-size: 1.08rem;
    line-height: 1.8;
    margin: 24px 0 0;
}

.ec-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.ec-hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 12px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    font-size: 0.86rem;
    font-weight: 850;
}

.ec-hero-points i {
    color: #86efac;
    font-size: 1.05rem;
}

.ec-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.btn-hero-primary {
    border: 0;
    border-radius: 999px;
    padding: 14px 30px;
    color: #ffffff;
    background: linear-gradient(135deg, #29BFE4, #8CC63F);
    box-shadow: 0 18px 40px rgba(41, 191, 228, 0.32);
    font-weight: 950;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 54px rgba(140, 198, 63, 0.38);
}

.ec-hero-company-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e0f2fe;
    text-decoration: none;
    font-weight: 900;
}

.ec-hero-company-link:hover {
    color: #bef264;
}

.ec-public-visit-counter {
    width: fit-content;
    max-width: 100%;
    display: grid;
    grid-template-columns: auto auto minmax(120px, 1fr) auto;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 7px 11px;
    border-radius: 18px;
    color: #ffffff;
    background: rgba(5, 15, 28, 0.58);
    border: 1px solid rgba(103, 232, 249, 0.24);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(16px);
}

.ec-public-visit-counter > .material-symbols-outlined {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #06131e;
    background: linear-gradient(135deg, #67e8f9, #bef264);
}

.ec-public-visit-counter strong,
.ec-public-visit-counter small {
    display: block;
}

.ec-public-visit-counter strong {
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 950;
    line-height: 1;
}

.ec-public-visit-counter small {
    margin-top: 3px;
    color: #a7f3d0;
    font-size: 0.62rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ec-public-visit-counter em {
    color: #cbd5e1;
    font-size: 0.68rem;
    font-style: normal;
    font-weight: 750;
}

.ec-live-signal {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 9px;
    border-radius: 999px;
    color: #d9f99d;
    background: rgba(34, 197, 94, 0.13);
    border: 1px solid rgba(134, 239, 172, 0.26);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.ec-live-signal i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #86efac;
    box-shadow: 0 0 0 0 rgba(134, 239, 172, 0.55);
    animation: ec-live-pulse 1.8s ease-out infinite;
}

@keyframes ec-live-pulse {
    70% { box-shadow: 0 0 0 7px rgba(134, 239, 172, 0); }
    100% { box-shadow: 0 0 0 0 rgba(134, 239, 172, 0); }
}

.ec-whatsapp-float {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 1075;
    width: 58px;
    min-height: 58px;
    display: inline-grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 0;
    padding: 8px;
    border-radius: 999px;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(135deg, #075e54, #25d366);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 22px 58px rgba(6, 78, 59, 0.32);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ec-whatsapp-float:hover {
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 28px 68px rgba(6, 78, 59, 0.42);
}

.ec-whatsapp-float__icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #075e54;
    background: #ffffff;
    font-size: 1.35rem;
}

.ec-whatsapp-float small,
.ec-whatsapp-float strong {
    display: block;
    line-height: 1.15;
}

.ec-whatsapp-float small {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.68rem;
    font-weight: 700;
}

.ec-whatsapp-float strong {
    font-size: 0.82rem;
    font-weight: 900;
}

.ec-whatsapp-float > span:last-child { display: none; }

.ec-hero-command {
    border-radius: 26px;
    padding: 24px;
    background:
        linear-gradient(145deg, rgba(15, 23, 42, 0.78), rgba(3, 7, 18, 0.58)) padding-box,
        linear-gradient(135deg, rgba(103, 232, 249, 0.55), rgba(190, 242, 100, 0.38), rgba(250, 204, 21, 0.28)) border-box;
    border: 1px solid transparent;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(20px);
}

.ec-hero-command__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.ec-hero-command__top img {
    width: 150px;
    max-height: 62px;
    object-fit: contain;
    padding: 8px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
}

.ec-hero-command__top span,
.ec-hero-command__module span {
    color: #a7f3d0;
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.ec-hero-command__module {
    margin-top: 26px;
}

.ec-hero-command__module h2 {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 950;
    margin: 7px 0 8px;
}

.ec-hero-command__module p {
    color: #cbd5e1;
    line-height: 1.65;
    margin: 0;
}

.ec-hero-command__metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 24px;
}

.ec-hero-command__metrics article {
    min-width: 0;
    padding: 14px 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.ec-hero-command__metrics small,
.ec-hero-command__metrics strong {
    display: block;
}

.ec-hero-command__metrics small {
    color: #94a3b8;
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
}

.ec-hero-command__metrics strong {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 950;
    margin-top: 4px;
}

.ec-hero-command__status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding: 12px 14px;
    border-radius: 18px;
    color: #fde68a;
    background: rgba(245, 168, 0, 0.1);
    border: 1px solid rgba(245, 168, 0, 0.22);
    font-weight: 850;
    font-size: 0.88rem;
}

.ec-hero-slider-controls {
    position: relative;
    z-index: 4;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 42px;
}

.ec-hero-slider-controls button {
    min-height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 0.82rem;
    font-weight: 900;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.ec-hero-slider-controls button span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #64748b;
}

.ec-hero-slider-controls button.active {
    color: #06131e;
    background: #ffffff;
    transform: translateY(-2px);
}

.ec-hero-slider-controls button.active span {
    background: linear-gradient(135deg, #29BFE4, #8CC63F);
}

.ec-launch-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 18%, rgba(41, 191, 228, 0.16), transparent 28%),
        radial-gradient(circle at 92% 18%, rgba(245, 168, 0, 0.12), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.ec-launch-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.ec-launch-card {
    position: relative;
    min-height: 100%;
    padding: 24px;
    border-radius: 24px;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, rgba(41, 191, 228, 0.44), rgba(140, 198, 63, 0.26), rgba(245, 168, 0, 0.2)) border-box;
    border: 1px solid transparent;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.ec-launch-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: radial-gradient(circle at top right, rgba(41, 191, 228, 0.16), transparent 36%);
    transition: opacity 0.28s ease;
}

.ec-launch-card > * {
    position: relative;
    z-index: 1;
}

.ec-launch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 34px 80px rgba(15, 23, 42, 0.13);
}

.ec-launch-card:hover::before {
    opacity: 1;
}

.ec-launch-card__header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ec-launch-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, #0284c7, #16a34a);
    box-shadow: 0 16px 30px rgba(41, 191, 228, 0.24);
}

.ec-launch-icon i {
    font-size: 2rem;
}

.ec-launch-card.green .ec-launch-icon {
    background: linear-gradient(135deg, #16a34a, #8CC63F);
}

.ec-launch-card.yellow .ec-launch-icon {
    background: linear-gradient(135deg, #d97706, #F5A800);
}

.ec-launch-card.blue .ec-launch-icon {
    background: linear-gradient(135deg, #0f172a, #29BFE4);
}

.ec-launch-card small {
    display: block;
    color: #0284c7;
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.08em;
}

.ec-launch-card h3 {
    color: #0f172a;
    font-size: 1.42rem;
    font-weight: 950;
    margin: 2px 0 0;
}

.ec-launch-card p {
    color: #475569;
    line-height: 1.62;
    margin: 18px 0;
}

.ec-launch-card ul {
    display: grid;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ec-launch-card li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #334155;
    font-size: 0.9rem;
    font-weight: 800;
}

.ec-launch-card li i {
    color: #16a34a;
    font-size: 1rem;
    margin-top: 2px;
}

.ec-launch-roadmap {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) 1fr;
    gap: 20px;
    align-items: center;
    margin-top: 24px;
    padding: 22px;
    border-radius: 24px;
    color: #ffffff;
    background:
        radial-gradient(circle at top right, rgba(140, 198, 63, 0.22), transparent 32%),
        linear-gradient(135deg, #0f172a, #075985);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
}

.ec-launch-roadmap span {
    display: block;
    color: #a7f3d0;
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ec-launch-roadmap strong {
    display: block;
    margin-top: 5px;
    color: #ffffff;
    font-size: 1.15rem;
    line-height: 1.42;
}

.ec-launch-roadmap__chips {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}

.ec-launch-roadmap__chips span {
    color: #e0f2fe;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 8px 12px;
    letter-spacing: 0;
}

.ec-leadership-section {
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px),
        linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
        #ffffff;
    background-size: 42px 42px;
    overflow: hidden;
}

.ec-leadership-shell {
    display: grid;
    grid-template-columns: minmax(260px, 0.42fr) 1fr;
    gap: 34px;
    align-items: stretch;
    padding: 28px;
    border-radius: 30px;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, rgba(41, 191, 228, 0.42), rgba(140, 198, 63, 0.25), rgba(245, 168, 0, 0.22)) border-box;
    border: 1px solid transparent;
    box-shadow: 0 34px 90px rgba(15, 23, 42, 0.12);
}

.ec-leadership-photo {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 24px;
    background: #0f172a;
}

.ec-leadership-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.03);
}

.ec-leadership-photo::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.86));
}

.ec-leadership-photo span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 1;
    display: inline-flex;
    padding: 8px 11px;
    border-radius: 999px;
    color: #fff7ed;
    background: rgba(194, 65, 12, 0.76);
    border: 1px solid rgba(254, 215, 170, 0.4);
    font-size: 0.72rem;
    font-weight: 950;
    text-transform: uppercase;
}

.ec-leadership-content {
    padding: 18px 10px 18px 0;
}

.ec-leadership-content h2 {
    color: #0f172a;
    font-size: clamp(2rem, 4vw, 4.2rem);
    font-weight: 950;
    line-height: 1.02;
    letter-spacing: 0;
    margin: 18px 0 18px;
}

.ec-leadership-content p {
    color: #475569;
    max-width: 780px;
    font-size: 1.05rem;
    line-height: 1.75;
}

.ec-leadership-content p strong {
    color: #0f172a;
}

.ec-leadership-company {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 18px;
    align-items: center;
    max-width: 720px;
    margin-top: 24px;
    padding: 18px;
    border-radius: 22px;
    background:
        radial-gradient(circle at top right, rgba(41, 191, 228, 0.11), transparent 32%),
        #f8fafc;
    border: 1px solid #e2e8f0;
}

.ec-leadership-company img {
    width: 100%;
    max-height: 84px;
    object-fit: contain;
    padding: 10px;
    border-radius: 18px;
    background: #ffffff;
}

.ec-leadership-company small,
.ec-leadership-company strong,
.ec-leadership-company span {
    display: block;
}

.ec-leadership-company small {
    color: #0284c7;
    font-size: 0.76rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ec-leadership-company strong {
    color: #0f172a;
    font-size: 1.34rem;
    font-weight: 950;
}

.ec-leadership-company span {
    color: #64748b;
    font-weight: 750;
}

.ec-leadership-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.ec-leadership-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    color: #334155;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
    font-size: 0.86rem;
    font-weight: 900;
}

.ec-leadership-points i {
    color: #0284c7;
    font-size: 1.08rem;
}

.ec-leadership-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.ec-leadership-actions a,
.ec-leadership-actions button {
    min-height: 46px;
    border-radius: 999px;
    padding: 11px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 950;
}

.ec-leadership-actions a {
    color: #ffffff;
    text-decoration: none;
    background: #0f172a;
}

.ec-leadership-actions button {
    border: 0;
    color: #ffffff;
    background: linear-gradient(135deg, #29BFE4, #8CC63F);
    box-shadow: 0 16px 32px rgba(41, 191, 228, 0.25);
}

@media (max-width: 1199.98px) {
    .ec-launch-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .ec-hero-media {
        min-height: auto;
        padding: 72px 0 30px;
    }

    .ec-hero-media__veil {
        background:
            linear-gradient(180deg, rgba(7, 17, 31, 0.88) 0%, rgba(7, 17, 31, 0.78) 44%, rgba(7, 17, 31, 0.68) 100%);
    }

    .ec-hero-command {
        max-width: 560px;
    }

    .ec-leadership-shell {
        grid-template-columns: 1fr;
    }

    .ec-leadership-photo {
        min-height: 430px;
    }

    .ec-leadership-content {
        padding: 0;
    }
}

@media (max-width: 767.98px) {
    .ec-hero-copy h1 {
        font-size: clamp(2.3rem, 12vw, 3.4rem);
    }

    .ec-public-visit-counter {
        grid-template-columns: auto 1fr;
    }

    .ec-public-visit-counter em,
    .ec-live-signal {
        grid-column: 1 / -1;
    }

    .ec-live-signal {
        width: fit-content;
    }

    .ec-whatsapp-float {
        left: 14px;
        bottom: 14px;
        width: 58px;
        min-height: 58px;
        grid-template-columns: 1fr;
        padding: 8px;
    }

    .ec-whatsapp-float > span:last-child {
        display: none;
    }

    .ec-hero-command__metrics,
    .ec-launch-grid,
    .ec-launch-roadmap,
    .ec-leadership-company {
        grid-template-columns: 1fr;
    }

    .ec-hero-slider-controls button {
        flex: 1 1 calc(50% - 8px);
        justify-content: center;
    }

    .ec-launch-card:hover {
        transform: none;
    }

    .ec-leadership-shell {
        padding: 18px;
        border-radius: 24px;
    }

    .ec-leadership-photo {
        min-height: 380px;
    }
}

/* =========================================================================
   PRODUCTION FOOTER + DISCREET LEADERSHIP POLISH
   ========================================================================= */
.ec-leadership-shell {
    grid-template-columns: minmax(180px, 220px) 1fr;
    align-items: center;
    gap: 28px;
}

.ec-leadership-photo {
    width: 100%;
    min-height: 0;
    aspect-ratio: 1;
    border-radius: 28px;
    align-self: center;
    box-shadow: 0 24px 58px rgba(15, 23, 42, 0.18);
}

.ec-leadership-photo::after {
    height: 52%;
}

.ec-leadership-photo span {
    left: 14px;
    bottom: 14px;
    color: #ecfeff;
    background: rgba(15, 23, 42, 0.78);
    border-color: rgba(103, 232, 249, 0.32);
}

.ec-footer {
    position: relative;
    color: #cbd5e1;
    background:
        radial-gradient(circle at 10% 0%, rgba(41, 191, 228, 0.20), transparent 31%),
        radial-gradient(circle at 88% 14%, rgba(140, 198, 63, 0.16), transparent 28%),
        linear-gradient(180deg, #07111f 0%, #030712 100%);
    overflow: hidden;
    padding: 58px 0 96px;
}

.ec-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(180deg, black 0%, transparent 80%);
    -webkit-mask-image: linear-gradient(180deg, black 0%, transparent 80%);
    pointer-events: none;
}

.ec-footer .container {
    position: relative;
    z-index: 1;
}

.ec-footer-shell {
    display: grid;
    grid-template-columns: minmax(280px, 1.35fr) minmax(180px, 0.75fr) minmax(210px, 0.85fr) minmax(240px, 0.9fr);
    gap: 18px;
    align-items: stretch;
}

.ec-footer-brand,
.ec-footer-card,
.ec-footer-contact {
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(15, 23, 42, 0.88), rgba(7, 17, 31, 0.72)) padding-box,
        linear-gradient(135deg, rgba(103, 232, 249, 0.38), rgba(190, 242, 100, 0.22), rgba(250, 204, 21, 0.16)) border-box;
    border: 1px solid transparent;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.ec-footer-brand {
    padding: 26px;
}

.ec-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    text-decoration: none;
}

.ec-footer-logo img {
    width: 118px;
    max-height: 68px;
    object-fit: contain;
    padding: 8px 12px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.ec-footer-logo strong,
.ec-footer-logo small {
    display: block;
}

.ec-footer-logo strong {
    font-size: 1.24rem;
    font-weight: 950;
}

.ec-footer-logo small {
    color: #a7f3d0;
    font-weight: 800;
}

.ec-footer-brand p {
    max-width: 520px;
    color: #dbeafe;
    line-height: 1.72;
    margin: 22px 0 0;
}

.ec-footer-badges,
.ec-footer-modules {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.ec-footer-badges {
    margin-top: 24px;
}

.ec-footer-badges span,
.ec-footer-modules span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 999px;
    color: #e0f2fe;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 8px 11px;
    font-size: 0.78rem;
    font-weight: 850;
}

.ec-footer-badges i {
    color: #bef264;
    font-size: 1rem;
}

.ec-footer-card,
.ec-footer-contact {
    padding: 22px;
}

.ec-footer-card header,
.ec-footer-contact header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 950;
    margin-bottom: 16px;
}

.ec-footer-card header i,
.ec-footer-contact header i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #06131e;
    background: linear-gradient(135deg, #67e8f9, #bef264);
}

.ec-footer-card a {
    min-height: 39px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #cbd5e1;
    text-decoration: none;
    border-radius: 13px;
    padding: 8px 10px;
    font-weight: 830;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.ec-footer-card a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(3px);
}

.ec-footer-card a i {
    color: #67e8f9;
    font-size: 1rem;
}

.ec-footer-modules span {
    border-radius: 14px;
}

.ec-footer-contact {
    display: grid;
    align-content: start;
    gap: 12px;
}

.ec-footer-contact-link {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    border-radius: 16px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ec-footer-contact-link > i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, #29BFE4, #8CC63F);
    font-size: 1.25rem;
}

.ec-footer-contact-link strong,
.ec-footer-contact-link small {
    display: block;
}

.ec-footer-contact-link strong {
    font-weight: 950;
}

.ec-footer-contact-link small {
    color: #94a3b8;
    font-weight: 800;
}

.ec-footer-cta {
    min-height: 48px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #06131e;
    background: linear-gradient(135deg, #67e8f9, #bef264);
    box-shadow: 0 18px 34px rgba(41, 191, 228, 0.24);
    font-weight: 950;
}

.ec-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 18px;
    padding: 18px 4px 0;
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 750;
}

.ec-footer-bottom strong {
    color: #ffffff;
}

@media (max-width: 1199.98px) {
    .ec-footer-shell {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .ec-leadership-shell {
        grid-template-columns: minmax(160px, 210px) 1fr;
    }
}

@media (max-width: 767.98px) {
    .ec-leadership-shell,
    .ec-footer-shell {
        grid-template-columns: 1fr;
    }

    .ec-leadership-photo {
        width: min(210px, 72vw);
        justify-self: center;
    }

    .ec-footer {
        padding-top: 42px;
    }

    .ec-footer-brand,
    .ec-footer-card,
    .ec-footer-contact {
        border-radius: 20px;
    }

    .ec-footer-logo img {
        width: 104px;
    }
}

/* =========================================================================
   LOCAL ECOSYSTEM AUTH SURFACE
   ========================================================================= */
.ec-auth-state-section,
.ec-app-shell {
    min-height: calc(100vh - 85px);
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 12% 12%, rgba(41, 191, 228, 0.15), transparent 30%),
        radial-gradient(circle at 88% 18%, rgba(140, 198, 63, 0.13), transparent 26%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.ec-auth-state-card {
    width: min(680px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px;
    border-radius: 28px;
    text-align: center;
    color: #0f172a;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, rgba(41, 191, 228, 0.48), rgba(140, 198, 63, 0.34), rgba(245, 168, 0, 0.18)) border-box;
    border: 1px solid transparent;
    box-shadow: 0 32px 90px rgba(15, 23, 42, 0.12);
}

.ec-auth-state-card > .material-symbols-outlined {
    width: 68px;
    height: 68px;
    display: inline-grid;
    place-items: center;
    border-radius: 22px;
    color: #ffffff;
    background: linear-gradient(135deg, #29BFE4, #8CC63F);
    font-size: 2.1rem;
    box-shadow: 0 18px 34px rgba(41, 191, 228, 0.24);
}

.ec-auth-state-card h1,
.ec-app-header h1 {
    color: #0f172a;
    font-weight: 950;
    letter-spacing: 0;
}

.ec-auth-state-card h1 {
    margin: 20px 0 10px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.ec-auth-state-card p,
.ec-app-header p {
    color: #475569;
    line-height: 1.72;
}

.ec-auth-state-card p {
    max-width: 540px;
    margin: 0 auto 22px;
}

.ec-auth-state-card a,
.ec-auth-actions a {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 11px 18px;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(135deg, #0f172a, #0369a1);
    font-weight: 950;
}

.ec-auth-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.ec-auth-actions a.secondary {
    color: #06131e;
    background: linear-gradient(135deg, #67e8f9, #bef264);
}

.ec-app-shell {
    align-items: stretch;
}

.ec-app-header {
    max-width: 860px;
    margin-bottom: 28px;
}

.ec-app-header h1 {
    margin: 16px 0;
    font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.ec-app-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.ec-app-grid article,
.ec-app-session {
    border-radius: 24px;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, rgba(41, 191, 228, 0.42), rgba(140, 198, 63, 0.28), rgba(245, 168, 0, 0.18)) border-box;
    border: 1px solid transparent;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.ec-app-grid article {
    padding: 24px;
}

.ec-app-grid i {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient(135deg, #0284c7, #16a34a);
    font-size: 2rem;
}

.ec-app-grid strong,
.ec-app-grid span {
    display: block;
}

.ec-app-grid strong {
    color: #0f172a;
    font-size: 1.15rem;
    font-weight: 950;
    margin: 18px 0 8px;
}

.ec-app-grid span {
    color: #475569;
    line-height: 1.6;
}

.ec-app-session {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: center;
    margin-top: 22px;
    padding: 20px;
}

.ec-app-session > span {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #06131e;
    background: linear-gradient(135deg, #67e8f9, #bef264);
}

.ec-app-session small,
.ec-app-session strong,
.ec-app-session p {
    display: block;
}

.ec-app-session small {
    color: #0284c7;
    font-size: 0.76rem;
    font-weight: 950;
    text-transform: uppercase;
}

.ec-app-session strong {
    color: #0f172a;
    font-weight: 950;
}

.ec-app-session p {
    color: #64748b;
    margin: 4px 0 0;
}

@media (max-width: 991.98px) {
    .ec-app-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .ec-auth-state-card {
        padding: 24px;
    }

    .ec-app-session {
        grid-template-columns: 1fr;
    }
}
