/* Era Soft — ocean / ice / turquoise motion layer */
:root {
    --es-brand: #0ea5e9;
    --es-brand-dark: #0284c7;
    --es-brand-soft: #ecfeff;
    --es-bg: #f4fbff;
    --es-footer: #062033;
    --es-hero-from: #0c4a6e;
    --es-hero-to: #0284c7;
    --es-hero-glow: #38bdf8;
    --es-cyan: #14b8a6;
    --es-emerald: #34d399;
    --es-amber: #2dd4bf;
}

/* ——— Era Soft logotype ——— */
.es-logo,
.es-logo.es-brand-mark {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    color: #111111;
    text-decoration: inherit;
    isolation: isolate;
}
.es-logo__lockup {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.28rem;
    min-width: 0;
}
.es-logo__wordmark {
    display: block;
    width: 8.6rem;
    height: auto;
}
.es-logo-ink { fill: currentColor; }
.es-logo-ink path[stroke] { fill: none; stroke: currentColor; }
.es-logo-dot,
.es-logo-accent { fill: #FFED00; }
.es-logo__meta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #C47A00;
    line-height: 1;
}
.es-logo__meta i {
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0.7;
}
.es-logo--sm .es-logo__wordmark { width: 9.1rem; }
.es-logo--sm .es-logo__meta { font-size: 0.46rem; }
.es-logo--md .es-logo__wordmark { width: 11.5rem; }
.es-logo--md .es-logo__meta { font-size: 0.52rem; }
.es-logo--lg .es-logo__wordmark { width: 14.4rem; }
.es-logo--lg .es-logo__meta { font-size: 0.62rem; }
.es-logo--light { color: #ffffff; }
.es-logo--light .es-logo__meta { color: #FFED00; }
.es-logo--dark { color: #1a1a1a; }
.es-logo--dark .es-logo__meta { color: #C47A00; }

.es-brand-mark { isolation: isolate; }

/* ——— Global tech atmosphere ——— */
.es-tech-noise {
    position: relative;
    isolation: isolate;
}

.es-tech-noise::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(20, 184, 166, 0.08), transparent 28%),
        radial-gradient(circle at 80% 10%, rgba(14, 165, 233, 0.1), transparent 30%),
        linear-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
    background-size: auto, auto, 32px 32px, 32px 32px;
    animation: es-grid-drift 18s linear infinite;
}

.es-tech-noise > * { position: relative; z-index: 1; }

@keyframes es-grid-drift {
    from { background-position: 0 0, 0 0, 0 0, 0 0; }
    to { background-position: 0 0, 0 0, 32px 32px, 32px 32px; }
}

/* Network node constellation */
.es-net-nodes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.es-net-nodes span {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 9999px;
    background: rgba(20, 184, 166, 0.85);
    box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.45);
    animation: es-node-pulse 2.8s ease-out infinite;
}

.es-net-nodes span:nth-child(1) { top: 18%; left: 12%; animation-delay: 0s; }
.es-net-nodes span:nth-child(2) { top: 32%; left: 78%; animation-delay: 0.4s; background: rgba(255,255,255,0.85); }
.es-net-nodes span:nth-child(3) { top: 68%; left: 22%; animation-delay: 0.8s; }
.es-net-nodes span:nth-child(4) { top: 74%; left: 66%; animation-delay: 1.1s; background: rgba(52, 211, 153, 0.9); }
.es-net-nodes span:nth-child(5) { top: 46%; left: 48%; animation-delay: 1.5s; }
.es-net-nodes span:nth-child(6) { top: 22%; left: 54%; animation-delay: 1.9s; background: rgba(255,255,255,0.75); }

.es-net-nodes i {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.55), transparent);
    transform-origin: left center;
    animation: es-link-sweep 3.6s ease-in-out infinite;
    opacity: 0.55;
}

.es-net-nodes i:nth-child(7) { top: 20%; left: 13%; width: 42%; animation-delay: 0.2s; }
.es-net-nodes i:nth-child(8) { top: 48%; left: 24%; width: 28%; animation-delay: 1s; transform: rotate(18deg); }
.es-net-nodes i:nth-child(9) { top: 70%; left: 24%; width: 40%; animation-delay: 1.6s; }

@keyframes es-node-pulse {
    0% { box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.5); transform: scale(1); }
    70% { box-shadow: 0 0 0 14px rgba(20, 184, 166, 0); transform: scale(1.15); }
    100% { box-shadow: 0 0 0 0 rgba(20, 184, 166, 0); transform: scale(1); }
}

@keyframes es-link-sweep {
    0%, 100% { opacity: 0.15; filter: brightness(0.8); }
    50% { opacity: 0.8; filter: brightness(1.4); }
}

/* Server rack LEDs */
.es-rack {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.es-led {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 9999px;
    background: #94a3b8;
    box-shadow: 0 0 0 0 transparent;
}

.es-led-ok {
    background: var(--es-emerald);
    animation: es-led-blink 1.8s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(52, 211, 153, 0.7);
}

.es-led-warn {
    background: var(--es-amber);
    animation: es-led-blink 1.1s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(45, 212, 191, 0.65);
}

.es-led-live {
    background: var(--es-cyan);
    animation: es-led-blink 0.9s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(20, 184, 166, 0.8);
}

@keyframes es-led-blink {
    0%, 100% { opacity: 1; filter: brightness(1); }
    50% { opacity: 0.45; filter: brightness(1.35); }
}

/* Terminal / code scan */
.es-scanline {
    position: relative;
    overflow: hidden;
}

.es-scanline::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 18%;
    top: -20%;
    z-index: 0;
    background: linear-gradient(180deg, transparent, rgba(14, 165, 233, 0.05), transparent);
    animation: es-scan 7s linear infinite;
    pointer-events: none;
}

@keyframes es-scan {
    from { top: -30%; }
    to { top: 110%; }
}

.es-terminal-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(20, 184, 166, 0.25);
    background: rgba(15, 23, 42, 0.55);
    padding: 0.35rem 0.75rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.7rem;
    color: #a5f3fc;
    letter-spacing: 0.02em;
}

.es-terminal-chip::before {
    content: "";
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 9999px;
    background: #34d399;
    box-shadow: 0 0 8px rgba(52, 211, 153, 0.8);
    animation: es-led-blink 1.4s ease-in-out infinite;
}

.es-typing::after {
    content: "▋";
    margin-left: 0.15rem;
    color: #67e8f9;
    animation: es-caret 1s steps(1) infinite;
}

@keyframes es-caret {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

/* Data packet / upload stream */
.es-packets {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.es-packets b {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.55);
    animation: es-packet-fly 5.5s linear infinite;
    opacity: 0;
}

.es-packets b:nth-child(1) { left: 15%; animation-delay: 0s; }
.es-packets b:nth-child(2) { left: 35%; animation-delay: 1.2s; background: rgba(20, 184, 166, 0.8); }
.es-packets b:nth-child(3) { left: 55%; animation-delay: 2.1s; }
.es-packets b:nth-child(4) { left: 72%; animation-delay: 3s; background: rgba(52, 211, 153, 0.8); }
.es-packets b:nth-child(5) { left: 88%; animation-delay: 4s; }

@keyframes es-packet-fly {
    0% { top: 110%; opacity: 0; transform: translateX(0) rotate(0deg); }
    10% { opacity: 1; }
    100% { top: -10%; opacity: 0; transform: translateX(18px) rotate(180deg); }
}

/* ——— Hero upgrades ——— */
.es-hero {
    position: relative;
    overflow: hidden;
}

.es-hero .es-net-nodes,
.es-hero .es-packets {
    z-index: 1;
}

.es-hero-orbit {
    position: absolute;
    right: -4rem;
    top: 20%;
    width: min(22rem, 48vw);
    height: min(22rem, 48vw);
    border-radius: 9999px;
    border: 1px dashed rgba(255, 255, 255, 0.22);
    animation: es-spin 28s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.es-hero-orbit::before,
.es-hero-orbit::after {
    content: "";
    position: absolute;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 9999px;
    background: #14b8a6;
    box-shadow: 0 0 16px rgba(20, 184, 166, 0.9);
}

.es-hero-orbit::before { top: 8%; left: 46%; }
.es-hero-orbit::after {
    bottom: 12%;
    right: 10%;
    background: #fff;
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.8);
}

.es-hero-orbit-inner {
    position: absolute;
    inset: 18%;
    border-radius: 9999px;
    border: 1px solid rgba(20, 184, 166, 0.25);
    animation: es-spin 16s linear infinite reverse;
}

@keyframes es-spin {
    to { transform: rotate(360deg); }
}

.es-hero-card {
    transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.es-hero-card:hover {
    transform: translateY(-6px) scale(1.01);
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(20, 184, 166, 0.45);
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.25);
}

/* ——— Cards / tables / sections ——— */
/* Auth / hero overlays share absolute layers */
.es-auth-shell .es-net-nodes,
.es-auth-shell .es-packets {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.es-catalog-band {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(238, 244, 255, 0.65), transparent 42%),
        radial-gradient(ellipse 50% 40% at 90% 0%, rgba(56, 189, 248, 0.08), transparent 55%);
}

.es-catalog-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(14, 165, 233, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 165, 233, 0.035) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
    pointer-events: none;
    animation: es-grid-drift 28s linear infinite;
}

.es-catalog-band > * { position: relative; z-index: 1; }

.es-card-service,
.es-catalog-card,
.es-section-card,
.es-stat {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.es-card-service:hover,
.es-catalog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(20, 184, 166, 0.12);
}

.es-icon-lg,
.es-icon {
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.group:hover .es-icon-lg,
.group:hover .es-icon,
.es-card-service:hover .es-icon-lg {
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 10px 22px rgba(14, 165, 233, 0.18);
}

.es-table tbody tr {
    transition: background 0.25s ease, transform 0.25s ease;
}

.es-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(238, 244, 255, 0.95), rgba(224, 252, 255, 0.35)) !important;
}

.es-section-band {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 50% 80% at 0% 50%, rgba(14, 165, 233, 0.06), transparent 55%),
        radial-gradient(ellipse 40% 70% at 100% 30%, rgba(20, 184, 166, 0.05), transparent 50%),
        #fff;
}

.es-section-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
    background-size: 48px 100%;
    animation: es-grid-drift 22s linear infinite;
    pointer-events: none;
    opacity: 0.7;
}

.es-live-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border-radius: 9999px;
    border: 1px solid rgba(52, 211, 153, 0.35);
    background: rgba(236, 253, 245, 0.9);
    padding: 0.25rem 0.65rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #047857;
}

.es-live-pill i {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 9999px;
    background: #10b981;
    animation: es-led-blink 1.2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.8);
}

/* ——— Auth shell extras ——— */
.es-auth-shell {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 55% at 12% 18%, rgba(47, 107, 255, 0.22), transparent 55%),
        radial-gradient(ellipse 55% 45% at 88% 82%, rgba(56, 189, 248, 0.14), transparent 50%),
        linear-gradient(160deg, #062033 0%, #0c4a6e 42%, #0ea5e9 100%);
}

.es-auth-shell::before,
.es-auth-shell::after {
    content: "";
    position: absolute;
    border-radius: 9999px;
    pointer-events: none;
    animation: es-float-ui 8s ease-in-out infinite;
}

.es-auth-shell::before {
    width: 22rem; height: 22rem; top: -6rem; right: -4rem;
    background: rgba(255, 255, 255, 0.1);
}

.es-auth-shell::after {
    width: 18rem; height: 18rem; bottom: -5rem; left: -3rem;
    background: rgba(45, 212, 191, 0.16);
    animation-direction: reverse;
    animation-duration: 9.5s;
}

.es-auth-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
    pointer-events: none;
    animation: es-grid-drift 24s linear infinite;
}

.es-auth-panel {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    display: flex;
    min-height: 100vh;
    width: 100%;
    max-width: 72rem;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2.5rem 1rem;
}

@media (min-width: 1024px) {
    .es-auth-panel {
        display: grid;
        grid-template-columns: 1.05fr 1fr;
        align-items: center;
        gap: 3rem;
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
}

.es-auth-brand { color: #fff; animation: es-rise-ui 0.7s ease both; }

.es-auth-card {
    position: relative;
    z-index: 2;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.96);
    padding: 1.5rem;
    box-shadow: 0 25px 50px rgba(2, 6, 23, 0.28);
    backdrop-filter: blur(16px);
    animation: es-rise-ui 0.75s ease 0.08s both;
}

@media (min-width: 640px) {
    .es-auth-card { padding: 2rem; }
}

.es-auth-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    backdrop-filter: blur(8px);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.es-auth-feature:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(20, 184, 166, 0.4);
}

.es-choice {
    position: relative;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    padding: 0.85rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.es-choice:hover {
    border-color: rgba(14, 165, 233, 0.35);
    background: #fff;
    transform: translateY(-1px);
}

.es-choice.is-active {
    border-color: #0ea5e9;
    background: #f0f9ff;
    color: #0e7490;
    box-shadow: 0 10px 24px rgba(14, 165, 233, 0.12);
}

.es-input {
    width: 100%;
    min-height: 2.85rem;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    background: rgba(248, 250, 252, 0.9);
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #0f172a;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.es-input:hover { border-color: #cbd5e1; background: #fff; }

.es-input:focus {
    border-color: #0ea5e9;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12), 0 0 0 1px rgba(20, 184, 166, 0.25);
}

.es-password-toggle {
    position: absolute;
    inset-block: 0;
    right: 0;
    display: flex;
    align-items: center;
    padding-inline: 0.75rem;
    color: #94a3b8;
    transition: color 0.2s ease;
}

.es-password-toggle:hover { color: #0284c7; }

/* ——— App shell / panels ——— */
.es-app-shell {
    min-height: 100vh;
    background:
        radial-gradient(ellipse 60% 40% at 100% 0%, rgba(14, 165, 233, 0.07), transparent 55%),
        radial-gradient(ellipse 40% 30% at 0% 100%, rgba(20, 184, 166, 0.05), transparent 50%),
        #f4fbff;
}

.es-sidebar,
.es-mobile-drawer {
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(16px);
    border-right-color: rgba(226, 232, 240, 0.85) !important;
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.08);
}

.es-sidebar-brand {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: linear-gradient(135deg, #0c4a6e 0%, #0ea5e9 100%);
    padding: 1rem;
    color: #fff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

.es-sidebar-brand::after {
    content: "";
    position: absolute;
    right: -20%;
    top: -40%;
    width: 8rem;
    height: 8rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.12);
    animation: es-float-ui 6s ease-in-out infinite;
}

.es-nav-link-active { box-shadow: inset 3px 0 0 var(--es-brand); }

.es-nav-link-idle:hover,
.es-nav-link-active:hover { transform: translateX(3px); }

.es-app-topbar {
    background: rgba(255, 255, 255, 0.82) !important;
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.03);
}

.es-stat {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.es-stat::after {
    content: "";
    position: absolute;
    inset: auto -20% -40% auto;
    width: 6rem;
    height: 6rem;
    border-radius: 9999px;
    background: rgba(14, 165, 233, 0.06);
    transition: transform 0.35s ease;
}

.es-stat:hover {
    transform: translateY(-4px);
    border-color: rgba(14, 165, 233, 0.28);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(20, 184, 166, 0.12);
}

.es-stat:hover::after { transform: scale(1.25); }

.es-section-card {
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.es-section-card:hover {
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.07);
    transform: translateY(-2px);
}

.es-toast-ok {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border-radius: 1rem;
    border: 1px solid rgba(167, 243, 208, 0.9);
    background: rgba(236, 253, 245, 0.95);
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #064e3b;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.08);
    animation: es-rise-ui 0.45s ease both;
}

.es-btn-primary {
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.es-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(14, 165, 233, 0.22);
}

.es-shine { position: relative; overflow: hidden; }

.es-shine::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.35) 48%, transparent 62%);
    transform: translateX(-120%);
    animation: es-shine-ui 4.5s ease-in-out infinite;
    pointer-events: none;
}

.es-stagger > * { animation: es-rise-ui 0.55s ease both; }
.es-stagger > *:nth-child(1) { animation-delay: 0.04s; }
.es-stagger > *:nth-child(2) { animation-delay: 0.08s; }
.es-stagger > *:nth-child(3) { animation-delay: 0.12s; }
.es-stagger > *:nth-child(4) { animation-delay: 0.16s; }
.es-stagger > *:nth-child(5) { animation-delay: 0.2s; }
.es-stagger > *:nth-child(6) { animation-delay: 0.24s; }
.es-stagger > *:nth-child(7) { animation-delay: 0.28s; }
.es-stagger > *:nth-child(8) { animation-delay: 0.32s; }

.es-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.es-reveal.is-visible {
    opacity: 1;
    transform: none;
}

.es-topbar a,
.es-site-header a {
    transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.es-site-header .es-btn-primary:hover,
.es-site-header .es-btn-secondary:hover {
    transform: translateY(-2px);
}

.es-footer-wave {
    position: relative;
    overflow: hidden;
}

.es-footer-wave::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.55), transparent, rgba(45, 212, 191, 0.55), transparent);
    animation: es-wave 3.5s linear infinite;
}

.es-footer-pay {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
}
.es-footer-pay__label {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #94a3b8;
}
.es-iyzico-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    border-radius: 0.9rem;
    padding: 0.55rem 0.7rem 0.55rem 0.55rem;
    max-width: 100%;
}
.es-iyzico-badge--on-dark {
    background: #fff;
    color: #0f172a;
    box-shadow: 0 10px 28px -18px rgba(0, 0, 0, 0.55);
}
.es-iyzico-badge--on-light {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #0f172a;
    box-shadow: 0 12px 28px -20px rgba(15, 23, 42, 0.35);
}
.es-iyzico-badge__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.15rem;
    padding: 0 0.85rem;
    border-radius: 0.55rem;
    background: #1E64FF;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
}
.es-iyzico-badge__copy {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}
.es-iyzico-badge__copy strong {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}
.es-iyzico-badge__copy em {
    font-style: normal;
    font-size: 0.68rem;
    font-weight: 600;
    color: #64748b;
}
.es-iyzico-badge__cards {
    display: inline-flex;
    gap: 0.3rem;
}
.es-iyzico-badge__card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.1rem;
    height: 1.35rem;
    padding: 0 0.35rem;
    border-radius: 0.28rem;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #f8fafc;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #334155;
}

.es-legal-prose {
    color: inherit;
}
.es-legal-prose .es-legal-updated {
    margin: 0 0 1.1rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
}
.es-legal-prose h2 {
    font-family: var(--font-display, "Space Grotesk", sans-serif);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 1.45rem 0 0.55rem;
    color: #f8fafc;
}
.es-legal-prose h2:first-of-type { margin-top: 0.2rem; }
.es-legal-prose p {
    margin: 0 0 0.8rem;
    line-height: 1.75;
    color: #cbd5e1;
}
.es-legal-prose ul {
    margin: 0 0 1rem;
    padding-left: 1.15rem;
    color: #cbd5e1;
}
.es-legal-prose li {
    margin: 0.35rem 0;
    line-height: 1.65;
}

@keyframes es-wave {
    from { transform: translateX(-50%); }
    to { transform: translateX(0%); }
}

@keyframes es-rise-ui {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: none; }
}

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

@keyframes es-shine-ui {
    0%, 55% { transform: translateX(-120%); }
    75%, 100% { transform: translateX(120%); }
}

@media (prefers-reduced-motion: reduce) {
    .es-auth-card,
    .es-auth-brand,
    .es-stagger > *,
    .es-toast-ok,
    .es-auth-shell::before,
    .es-auth-shell::after,
    .es-sidebar-brand::after,
    .es-shine::after,
    .es-net-nodes span,
    .es-net-nodes i,
    .es-packets b,
    .es-hero-orbit,
    .es-hero-orbit-inner,
    .es-led,
    .es-led-ok,
    .es-led-warn,
    .es-led-live,
    .es-scanline::after,
    .es-typing::after,
    .es-tech-noise::before,
    .es-section-band::before,
    .es-catalog-band::before,
    .es-footer-wave::before,
    .es-auth-grid {
        animation: none !important;
    }
    .es-shine::after,
    .es-scanline::after,
    .es-packets,
    .es-net-nodes { display: none !important; }
    .es-reveal { opacity: 1 !important; transform: none !important; }
}

/* ——— Warm palette surface overrides (no Vite rebuild needed) ——— */
.es-hero {
    background: linear-gradient(135deg, var(--es-hero-from) 0%, var(--es-hero-to) 48%, #38bdf8 86%, #2dd4bf 100%) !important;
}
.es-hero::after { background: rgba(45, 212, 191, 0.3) !important; }
.es-auth-shell {
    background:
        radial-gradient(ellipse 70% 55% at 12% 18%, rgba(56, 189, 248, 0.3), transparent 55%),
        radial-gradient(ellipse 55% 45% at 88% 82%, rgba(20, 184, 166, 0.2), transparent 50%),
        linear-gradient(160deg, #062033 0%, #0c4a6e 38%, #0284c7 78%, #38bdf8 100%) !important;
}
.es-sidebar-brand {
    background: linear-gradient(135deg, #0c4a6e 0%, #0284c7 100%) !important;
    box-shadow: 0 12px 28px rgba(12, 74, 110, 0.28) !important;
}
.es-app-shell {
    background:
        radial-gradient(ellipse 60% 40% at 100% 0%, rgba(14, 165, 233, 0.09), transparent 55%),
        var(--es-bg, #f4fbff) !important;
}
.es-grid-bg {
    background-color: var(--es-bg, #f4fbff) !important;
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(14, 165, 233, 0.1), transparent),
        linear-gradient(rgba(125, 211, 252, 0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(125, 211, 252, 0.18) 1px, transparent 1px) !important;
}
.es-topbar {
    background: linear-gradient(90deg, #062033 0%, #0c4a6e 55%, #0e7490 100%) !important;
    color: #e0f2fe !important;
}
.es-btn-primary {
    background: linear-gradient(135deg, #0ea5e9 0%, #0ea5e9 55%, #0284c7 100%) !important;
    box-shadow: 0 10px 22px rgba(2, 132, 199, 0.28) !important;
}
.es-btn-primary:hover {
    background: linear-gradient(135deg, #38bdf8 0%, #0284c7 55%, #0284c7 100%) !important;
}
.es-btn-secondary:hover {
    border-color: #7dd3fc !important;
    background: #f0f9ff !important;
    color: #0e7490 !important;
}
.es-nav-link-active {
    background: #f0f9ff !important;
    color: #0e7490 !important;
    box-shadow: inset 3px 0 0 var(--es-brand) !important;
}
.es-catalog-band {
    background: linear-gradient(180deg, #e8f7ff 0%, #f4fbff 40%, #ffffff 100%) !important;
}
.es-input:focus, .es-choice.is-active {
    border-color: #0ea5e9 !important;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.14) !important;
}
.es-choice.is-active { background: #bae6fd !important; color: #0c4a6e !important; -webkit-text-fill-color: #0c4a6e !important; }
.es-password-toggle:hover { color: #0284c7 !important; }

/* Keep blue/sky utilities in the ocean range */
.text-blue-50, .text-blue-50\/95 { color: rgb(240 249 255 / 0.95) !important; }
.text-blue-100, .text-blue-100\/85, .text-blue-100\/90, .text-blue-100\/80 { color: rgb(224 242 254 / 0.9) !important; }
.text-blue-600, .text-blue-700, .text-blue-800,
.hover\:text-blue-700:hover, .hover\:text-blue-800:hover,
.group-hover\:text-blue-600, .group-hover\:text-blue-700,
.text-sky-700, .text-sky-800, .group-hover\:text-sky-800 {
    color: #0284c7 !important;
}
.bg-blue-600 {
    background-color: #0284c7 !important;
    color: #fff !important;
}
.bg-blue-50, .hover\:bg-blue-50:hover {
    background-color: #f0f9ff !important;
    color: inherit !important;
}
.border-blue-300, .border-blue-500, .border-blue-600, .hover\:border-blue-300:hover, .hover\:border-sky-300:hover {
    border-color: #38bdf8 !important;
}
.shadow-blue-900\/15, .shadow-blue-900\/20, .shadow-blue-950\/20 {
    --tw-shadow-color: rgb(8 47 73 / 0.22) !important;
}
.focus\:ring-blue-500\/30:focus { --tw-ring-color: rgb(14 165 233 / 0.35) !important; }
.text-orange-link { color: #0284c7; }

footer.bg-\[var\(--es-footer\)\], .bg-\[var\(--es-footer\)\] {
    background: linear-gradient(180deg, #07263d 0%, #041624 100%) !important;
}

/* Explicit orange utility fallbacks (Vite may not include unused orange classes) */
.text-orange-50, .text-orange-50\/95 { color: rgb(240 253 250 / 0.95) !important; }
.text-orange-100, .text-orange-100\/85, .text-orange-100\/90, .text-orange-100\/80 { color: rgb(207 250 254 / 0.92) !important; }
.text-orange-600 { color: #0284c7 !important; }
.text-orange-700, .hover\:text-orange-700:hover, .group-hover\:text-orange-700 { color: #0284c7 !important; }
.text-orange-800, .hover\:text-orange-800:hover, .group-hover\:text-orange-800 { color: #0e7490 !important; }
.text-orange-900 { color: #0c4a6e !important; }
.bg-orange-50 { background-color: #f0f9ff !important; }
.bg-orange-600 { background-color: #0284c7 !important; color: #fff !important; }
.border-orange-300, .hover\:border-orange-300:hover { border-color: #7dd3fc !important; }
.border-orange-600 { border-color: #0284c7 !important; }
.shadow-orange-900\/20, .shadow-orange-950\/20 { --tw-shadow-color: rgb(8 47 73 / 0.22) !important; }
.focus\:ring-orange-500\/30:focus { --tw-ring-color: rgb(14 165 233 / 0.35) !important; }

.es-page-title {
    font-family: 'Space Grotesk', Manrope, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0f172a;
}
.es-page-lead { margin-top: 0.35rem; font-size: 0.875rem; color: #64748b; }
.es-table-shell {
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}
.es-stat {
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background: linear-gradient(180deg, #fff, #f8fafc);
    padding: 1rem 1.1rem;
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.06);
}
.es-stat-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: #64748b; }
.es-stat-value { margin-top: 0.35rem; font-size: 1.35rem; font-weight: 700; color: #0c4a6e; }
.es-badge-emerald { display: inline-flex; border-radius: 999px; background: #d1fae5; padding: 0.2rem 0.55rem; font-size: 0.7rem; font-weight: 700; color: #047857; }
.es-badge-sky { display: inline-flex; border-radius: 999px; background: #e0f2fe; padding: 0.2rem 0.55rem; font-size: 0.7rem; font-weight: 700; color: #0369a1; }
.es-toast-ok {
    display: flex;
    gap: 0.75rem;
    border-radius: 1rem;
    border: 1px solid #a7f3d0;
    background: #ecfdf5;
    padding: 0.9rem 1rem;
    color: #065f46;
}

/* Client dashboard — screenshot-level density */
.es-client-hero {
    display: grid;
    gap: 1rem;
}
@media (min-width: 1024px) {
    .es-client-hero { grid-template-columns: 1.15fr 1fr; }
}
.es-hello-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
    padding: 1.5rem 1.6rem;
    color: #fff;
    background:
        radial-gradient(120% 90% at 100% 0%, rgba(255,255,255,.18), transparent 55%),
        linear-gradient(135deg, #16a34a 0%, #15803d 55%, #166534 100%);
    box-shadow: 0 18px 40px rgba(22, 163, 74, .22);
}
.es-hello-card::after {
    content: "";
    position: absolute;
    right: -2rem;
    bottom: -2.5rem;
    width: 11rem;
    height: 11rem;
    border-radius: 2rem;
    background: rgba(255,255,255,.08);
    transform: rotate(18deg);
}
.es-cta-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
    padding: 1.5rem 1.6rem;
    color: #fff;
    background:
        radial-gradient(80% 80% at 100% 100%, rgba(56,189,248,.25), transparent 50%),
        linear-gradient(135deg, #0f2744 0%, #1e3a5f 100%);
    box-shadow: 0 18px 40px rgba(15, 39, 68, .22);
    min-height: 11rem;
}
.es-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.6rem;
    padding: 0 .95rem;
    border-radius: 999px;
    background: #e11d48;
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(225, 29, 72, .35);
}
.es-cta-btn:hover { background: #be123c; color: #fff; }
.es-cta-art {
    position: absolute;
    right: 1rem;
    bottom: 0;
    width: 7.5rem;
    height: 7.5rem;
    border-radius: 1.5rem 1.5rem 0 0;
    background: linear-gradient(180deg, #fb7185, #e11d48);
    opacity: .85;
}
.es-kpi-grid {
    display: grid;
    gap: .85rem;
    margin-top: 1.1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 1100px) {
    .es-kpi-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.es-kpi {
    display: flex;
    flex-direction: column;
    gap: .2rem;
    border-radius: 1.1rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    padding: 1rem 1.05rem;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .04);
    text-decoration: none;
    color: inherit;
}
.es-kpi:hover { border-color: #bae6fd; box-shadow: 0 14px 28px rgba(14, 165, 233, .08); }
.es-kpi-icon {
    display: inline-flex;
    height: 2.25rem;
    width: 2.25rem;
    align-items: center;
    justify-content: center;
    border-radius: .8rem;
    margin-bottom: .35rem;
}
.es-kpi-green { background: #dcfce7; color: #15803d; }
.es-kpi-blue { background: #e0f2fe; color: #0369a1; }
.es-kpi-amber { background: #fef3c7; color: #b45309; }
.es-kpi-slate { background: #f1f5f9; color: #334155; }
.es-kpi-label { font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #64748b; }
.es-kpi-value { font-size: 1.25rem; font-weight: 800; color: #0f172a; }
.es-kpi-sub { font-size: .72rem; color: #94a3b8; }
.es-info-card, .es-section-card {
    border-radius: 1.15rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .04);
    padding: 1.15rem 1.2rem;
}
.es-section-card { padding: 0; }
.es-verify-pill {
    display: inline-flex;
    border-radius: 999px;
    background: #fee2e2;
    color: #b91c1c;
    font-size: .68rem;
    font-weight: 700;
    padding: .25rem .6rem;
    white-space: nowrap;
}
.es-verify-pill.is-ok { background: #dcfce7; color: #166534; }
.es-verify-list { margin-top: .9rem; display: grid; gap: .45rem; font-size: .82rem; color: #64748b; }
.es-verify-list li { display: flex; align-items: center; gap: .5rem; }
.es-verify-list i {
    width: .85rem; height: .85rem; border-radius: 999px;
    background: #e2e8f0; flex-shrink: 0;
}
.es-verify-list li.is-ok { color: #166534; }
.es-verify-list li.is-ok i { background: #22c55e; }
.es-service-card {
    border-radius: 1.1rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    padding: 1.1rem;
    box-shadow: 0 8px 22px rgba(15,23,42,.04);
}
.es-service-actions { display: flex; flex-wrap: wrap; gap: .45rem; }
.es-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 1rem 0 1.25rem;
}
