:root {
    --background: #f7f8fb;
    --foreground: #171717;
    --card: #ffffff;
    --muted: #eef1f5;
    --muted-foreground: #6b7280;
    --accent: #0f1115;
    --accent-foreground: #f7f8fb;
    --border: #e5e7eb;
    --glass-bg: rgba(247, 248, 251, 0.78);
    --glass-border: rgba(229, 231, 235, 0.6);
    --radius: 24px;
    --shadow-soft: 0 18px 45px rgba(15, 17, 21, 0.08);
    --shadow-strong: 0 24px 60px rgba(15, 17, 21, 0.12);
    --transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

/* ESC Software 2.6.0 — índice público de proyectos */
.esc-projects-index-hero{padding-bottom:72px}.esc-projects-index-hero h1{max-width:980px}
.esc-projects-index-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1px;padding-top:20px;padding-bottom:20px;background:var(--esc-line)}
.esc-project-index-card{display:flex;min-height:540px;flex-direction:column;padding:clamp(28px,4vw,48px);background:#fff;color:#080a0e;text-decoration:none;transition:background .25s ease,color .25s ease}
.esc-project-index-card:hover{background:#0a0d12;color:#fff}.esc-project-index-top{display:flex;align-items:center;justify-content:space-between;gap:18px}.esc-project-index-top>span{font-family:"Space Grotesk",sans-serif;font-size:1.05rem}.esc-project-index-top small{font-size:.64rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;opacity:.55}
.esc-project-index-logo{display:flex;min-height:170px;align-items:center;margin:50px 0}.esc-project-index-logo img{width:min(100%,280px);height:100px;object-fit:contain;object-position:left center;transition:filter .25s ease}.esc-project-index-card:hover .esc-project-index-logo img{filter:grayscale(1) invert(1)}
.esc-project-index-copy h2{margin:0 0 15px;font-size:clamp(1.65rem,3vw,2.5rem);letter-spacing:-.045em}.esc-project-index-copy p{max-width:580px;margin:0;line-height:1.65;opacity:.62}
.esc-project-index-link{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-top:auto;padding-top:38px;border-top:1px solid currentColor;font-size:.72rem;font-weight:700}.esc-project-index-link .icon{width:18px;transition:transform .2s ease}.esc-project-index-card:hover .esc-project-index-link .icon{transform:translate(3px,-3px)}
@media(max-width:820px){.esc-projects-index-grid{grid-template-columns:1fr}.esc-project-index-card{min-height:470px}.esc-project-index-logo{min-height:130px;margin:34px 0}}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--foreground);
    background: var(--background);
    line-height: 1.5;
}

body.menu-open,
body.modal-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font: inherit;
}

.site-shell {
    min-height: 100vh;
}

.container {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
}

.page-main {
    min-height: calc(100vh - 120px);
}

.inner-main {
    padding-top: 108px;
}

.section {
    padding: 96px 0;
}

.section-bordered {
    border-top: 1px solid var(--border);
}

.section-muted {
    background: rgba(238, 241, 245, 0.25);
}

.section-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.section-kicker.centered {
    justify-content: center;
}

.section-kicker span,
.eyebrow,
.mini-kicker,
.inner-eyebrow,
.timeline-phase,
.project-category {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
}

.inner-eyebrow {
    margin: 0 0 18px;
    color: rgba(15, 17, 21, 0.6);
}

.line-accent {
    width: 44px;
    height: 1px;
    background: linear-gradient(to right, var(--accent), transparent);
}

.line-accent.rotate {
    transform: rotate(180deg);
}

.line-accent.short {
    width: 32px;
}

h1,
h2,
h3,
h4,
.hero-title,
.stack-number,
.problem-number,
.metric-value,
.roi-mark {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    letter-spacing: -0.03em;
}

h1,
h2,
h3,
h4,
p {
    margin: 0;
}

h1 {
    font-size: clamp(2.7rem, 6vw, 5.5rem);
    line-height: 0.98;
}

h2 {
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    line-height: 1.02;
}

h3 {
    font-size: clamp(1.2rem, 2vw, 2rem);
    line-height: 1.1;
}

p {
    color: var(--muted-foreground);
    font-size: 1rem;
}

.text-gradient-chrome {
    background: linear-gradient(90deg, #181818 0%, #737373 48%, #101010 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-gradient-accent {
    background: linear-gradient(90deg, #0f1115 0%, #4b5563 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-accent {
    color: var(--accent);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 999px;
    transition: var(--transition);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
}

.button:hover {
    transform: translateY(-2px) scale(1.01);
}

.button-dark {
    background: var(--accent);
    color: var(--accent-foreground);
    box-shadow: 0 18px 30px rgba(15, 17, 21, 0.12);
}

.button-outline {
    border-color: var(--border);
    color: var(--muted-foreground);
    background: transparent;
}

.button-outline:hover {
    color: var(--foreground);
    border-color: var(--foreground);
}

.button-soft {
    background: rgba(15, 17, 21, 0.06);
    color: var(--foreground);
}

.button-compact {
    padding: 14px 22px;
    font-size: 0.76rem;
}

.button-inline-icon .icon {
    width: 17px;
    height: 17px;
}

.button-full {
    width: 100%;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 88px;
    padding: 14px 0;
}

.site-brand img {
    height: 64px;
    width: auto;
    object-fit: contain;
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.header-login-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 18px;
    border: 1px solid rgba(15, 17, 21, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--foreground);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: var(--transition);
}

.header-login-button:hover {
    border-color: rgba(15, 17, 21, 0.38);
    transform: translateY(-1px);
}

.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: #111;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 59;
    background: rgba(0, 0, 0, 0.36);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
    will-change: opacity;
}

.side-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 60;
    width: min(600px, 100%);
    height: 100vh;
    background: var(--background);
    box-shadow: var(--shadow-strong);
    transform: translate3d(100%, 0, 0);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    overscroll-behavior: contain;
    will-change: transform;
    contain: layout paint;
}

.side-menu-inner {
    padding: 32px 32px 56px;
}

.side-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
}

.menu-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--foreground);
    cursor: pointer;
}

.menu-close:hover {
    background: rgba(15, 17, 21, 0.06);
}

.icon {
    width: 20px;
    height: 20px;
}

.icon-close {
    width: 22px;
    height: 22px;
}

.side-nav {
    display: grid;
    gap: 14px;
    margin-bottom: 32px;
}

.side-nav-link {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300;
    line-height: 1.1;
}

.link-underline {
    width: 100%;
    height: 2px;
    background: var(--foreground);
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    margin-top: 4px;
}

.side-nav-link:hover .link-underline,
.site-footer a:hover::after {
    transform: scaleX(1);
}

.side-cta-wrap {
    margin-bottom: 42px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.side-login-button {
    background: #fff;
}

.side-menu-groups {
    border-top: 1px solid var(--border);
    padding-top: 26px;
    display: grid;
    gap: 26px;
}

.side-menu-group h3,
.site-footer h3 {
    margin: 0 0 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(15, 17, 21, 0.55);
}

.side-menu-group ul,
.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
}

.side-menu-group li,
.site-footer li {
    margin: 0;
}

.side-menu-group a,
.site-footer a {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    font-size: 0.94rem;
    color: rgba(15, 17, 21, 0.72);
}

.side-menu-group a::after,
.site-footer a::after {
    content: '';
    width: 100%;
    height: 1px;
    background: currentColor;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.22s ease;
    margin-top: 3px;
}

.side-menu-group a:hover::after {
    transform: scaleX(1);
}

body.menu-open .menu-overlay {
    opacity: 1;
    pointer-events: auto;
}

body.menu-open .side-menu {
    transform: translate3d(0, 0, 0);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background,
.hero-background img,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    background: linear-gradient(to bottom, rgba(247, 248, 251, 0.6), rgba(247, 248, 251, 0.8), var(--background));
}

.hero-container {
    position: relative;
    z-index: 2;
    padding-top: 110px;
    padding-bottom: 60px;
}

.hero-content {
    max-width: 980px;
}

.hero-title {
    font-size: clamp(3.2rem, 8vw, 7.4rem);
    font-weight: 700;
    line-height: 1.03;
}

.hero-copy {
    margin-top: 28px;
    max-width: 720px;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.7;
}

.hero-actions,
.cta-actions,
.centered-actions,
.cta-band-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-actions {
    margin-top: 36px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-scroll-indicator span {
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--muted-foreground);
}

.hero-scroll-line {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: bounceLine 2s infinite;
}

@keyframes bounceLine {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

.two-col-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
}

.two-col-grid h2,
.section-heading h2,
.section-heading h1 {
    max-width: 840px;
}

.two-col-grid p + p,
.rich-copy p + p,
.about-cta-card p,
.cta-panel p + p,
.differentiator-copy p {
    margin-top: 24px;
}

.stack-list {
    display: grid;
    gap: 16px;
}

.stack-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
    border: 1px solid var(--border);
    background: var(--card);
    transition: var(--transition);
}

.stack-card:hover,
.problem-card:hover,
.capability-card:hover,
.pillar-card:hover,
.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.stack-number,
.problem-number {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(15, 17, 21, 0.35);
    min-width: 48px;
}

.stack-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
}

.stack-card p {
    margin-top: 6px;
    font-size: 0.95rem;
}

.section-heading {
    margin-bottom: 72px;
}

.section-heading.centered {
    text-align: center;
}

.section-heading.small-heading h2 {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.section-heading p,
.inner-lead,
.about-cta-card p,
.capability-card p,
.timeline-content p,
.metric-card p,
.project-copy p,
.cta-band p,
.cta-panel p {
    max-width: 760px;
    font-size: 1rem;
    line-height: 1.75;
}

.section-heading.centered p {
    margin: 24px auto 0;
}

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

.problem-card {
    border-left: 1px solid var(--border);
    padding: 34px 30px;
    background: transparent;
    transition: var(--transition);
}

.problem-card:hover {
    background: rgba(238, 241, 245, 0.45);
}

.problem-card h3 {
    margin-top: 18px;
    font-size: 1.7rem;
}

.problem-card p {
    margin-top: 14px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 64px;
}

.project-card {
    display: block;
}

.project-card.offset-card {
    margin-top: 64px;
}

.project-image-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 30px;
    background: #ddd;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.project-card:hover .project-image {
    transform: scale(1.03);
}

.project-copy {
    margin-top: 16px;
    display: grid;
    gap: 8px;
}

.project-category {
    color: rgba(107, 114, 128, 0.85);
}

.project-copy h2,
.project-copy h3 {
    font-size: 1.35rem;
    font-weight: 700;
}

.project-copy p:last-child {
    max-width: 520px;
    font-size: 0.95rem;
}

.featured-projects-section {
    background: var(--background);
}

.cta-band {
    margin-top: 64px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.7);
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-band h3 {
    margin-bottom: 10px;
}

.cta-section {
    padding-top: 112px;
    padding-bottom: 112px;
}

.cta-panel {
    max-width: 940px;
    margin: 0 auto;
    text-align: center;
}

.cta-panel h2 {
    max-width: 900px;
    margin: 0 auto;
}

.cta-panel > p {
    max-width: 700px;
    margin: 28px auto 0;
}

.centered-actions {
    justify-content: center;
    margin-top: 40px;
}

.cta-footnote {
    margin-top: 22px;
    font-size: 0.78rem;
    color: var(--muted-foreground);
}

.site-footer {
    background: #050505;
    color: #fff;
}

.footer-container {
    padding: 72px 0 42px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 48px;
    margin-bottom: 52px;
}

.site-footer h3 {
    color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
}

.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-brand-block {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-subtitle {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.84);
}

.footer-branding p,
.footer-copy p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.12);
}

.footer-copy {
    margin-top: 24px;
}

.inner-hero,
.capability-page-header,
.methodology-section,
.differentiator-section,
.about-hero {
    position: relative;
}

.inner-hero {
    padding: 40px 0 56px;
}

.inner-hero h1,
.capability-page-header h1,
.methodology-section h1,
.about-hero h1,
.differentiator-copy h1 {
    font-size: clamp(2.6rem, 5vw, 4.5rem);
}

.inner-lead {
    margin-top: 18px;
    max-width: 760px;
}

.about-hero {
    padding: 44px 0 84px;
    overflow: hidden;
}

.about-hero-inner {
    position: relative;
    z-index: 2;
}

.about-hero-copy {
    max-width: 980px;
}

.about-blob {
    position: absolute;
    top: 0;
    right: 0;
    width: min(760px, 100%);
    aspect-ratio: 1;
    transform: translate(30%, -20%);
    border-radius: 999px;
    background: rgba(15, 17, 21, 0.18);
    filter: blur(100px);
    opacity: 0.2;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 64px;
    align-items: center;
}

.about-grid h2 {
    margin-bottom: 30px;
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.rich-copy {
    display: grid;
    gap: 24px;
}

.pillar-list {
    display: grid;
    gap: 24px;
}

.pillar-card {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: var(--card);
    transition: var(--transition);
}

.pillar-icon,
.capability-icon,
.capability-modal-icon,
.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 17, 21, 0.06);
    color: var(--foreground);
    flex-shrink: 0;
}

.feature-icon-dark {
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
}

.pillar-card h3,
.capability-card h3,
.capability-modal-panel h3,
.metric-card h4,
.differentiator-feature-card h3,
.timeline-content h3 {
    margin-bottom: 10px;
}

.about-cta-section {
    padding-top: 0;
}

.about-cta-card {
    max-width: 860px;
    margin: 0 auto;
    padding: 54px 48px;
    border-radius: 32px;
    border: 1px solid var(--border);
    background: var(--card);
    box-shadow: var(--shadow-strong);
    text-align: center;
}

.about-cta-card p {
    margin: 18px auto 34px;
}

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

.capability-card {
    position: relative;
    padding: 34px;
    border: 1px solid var(--border);
    background: var(--card);
    cursor: pointer;
    transition: var(--transition);
}

.capability-card:hover {
    background: rgba(238, 241, 245, 0.4);
    border-color: rgba(15, 17, 21, 0.16);
}

.capability-card-action {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.capability-card:hover .capability-card-action {
    opacity: 1;
}

.capability-line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(to right, var(--accent), transparent);
    transition: width 0.45s ease;
}

.capability-card:hover .capability-line {
    width: 100%;
}

.capability-modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}

.capability-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.capability-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(247, 248, 251, 0.82);
    backdrop-filter: blur(6px);
}

.capability-modal-panel {
    position: relative;
    z-index: 2;
    width: min(560px, 100%);
    padding: 34px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: var(--card);
    box-shadow: var(--shadow-strong);
}

.capability-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--muted-foreground);
    cursor: pointer;
}

.capability-modal-close:hover {
    background: rgba(15, 17, 21, 0.06);
    color: var(--foreground);
}

.capability-modal-icon {
    margin-bottom: 18px;
    background: rgba(15, 17, 21, 0.08);
    color: var(--accent);
}

.capability-modal-panel > p {
    margin-top: 10px;
    margin-bottom: 24px;
}

.capability-modal-list h4 {
    margin-bottom: 14px;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.capability-modal-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.capability-modal-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted-foreground);
    font-size: 0.96rem;
}

.capability-modal-list li .icon {
    width: 17px;
    height: 17px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.capability-modal-cta {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}

.methodology-section {
    padding-top: 40px;
}

.timeline-wrap {
    position: relative;
    padding-bottom: 32px;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    transform: translateX(-50%);
    background: var(--border);
}

.timeline-list {
    display: grid;
    gap: 72px;
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
}

.timeline-item.reverse {
    flex-direction: row-reverse;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(15, 17, 21, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background);
    box-shadow: 0 5px 12px rgba(15, 17, 21, 0.08);
}

.timeline-dot-inner {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
}

.timeline-content,
.timeline-spacer {
    width: 50%;
}

.timeline-content {
    padding-right: 56px;
}

.timeline-content.align-left {
    padding-right: 0;
    padding-left: 56px;
}

.timeline-phase {
    color: var(--accent);
}

.timeline-content p {
    margin-top: 14px;
}

.differentiator-main {
    background: #fff;
    color: #0f172a;
}

.differentiator-section {
    padding-top: 120px;
    overflow: hidden;
}

.differentiator-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    pointer-events: none;
    background-image: radial-gradient(#000 1px, transparent 1px);
    background-size: 40px 40px;
}

.differentiator-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 80px;
    align-items: start;
}

.differentiator-copy {
    position: sticky;
    top: 128px;
}

.mini-kicker {
    color: #94a3b8;
    display: inline-block;
    margin-bottom: 16px;
}

.differentiator-copy h1 {
    color: #020617;
    font-size: clamp(2.9rem, 5vw, 4.5rem);
    line-height: 0.96;
}

.differentiator-copy h1 span {
    display: inline-block;
    color: #94a3b8;
    font-style: italic;
    font-family: Georgia, 'Times New Roman', serif;
}

.differentiator-copy p {
    max-width: 460px;
    color: #475569;
    font-size: 1.18rem;
    margin-top: 28px;
    line-height: 1.7;
}

.workflow-link {
    margin-top: 32px;
    padding: 0 0 6px;
    border: 0;
    border-bottom: 2px solid #020617;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #020617;
    cursor: pointer;
}

.workflow-link .icon {
    width: 16px;
    height: 16px;
}

.workflow-link:hover {
    color: #64748b;
    border-bottom-color: #64748b;
}

.differentiator-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.differentiator-feature-card {
    grid-column: span 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding: 42px 48px;
    border-radius: 40px;
    border: 1px solid #f1f5f9;
    background: #f8fafc;
}

.differentiator-feature-card p,
.metric-card p {
    color: #64748b;
}

.roi-mark {
    display: none;
    font-size: 120px;
    line-height: 1;
    font-weight: 900;
    color: rgba(203, 213, 225, 0.5);
    user-select: none;
}

.metric-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 22px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    border-radius: 32px;
    background: #fff;
    transition: var(--transition);
}

.metric-card-wide {
    grid-column: span 2;
}

.metric-card h4 {
    margin-top: 18px;
    margin-bottom: 6px;
    font-size: 0.76rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #94a3b8;
}

.metric-value {
    font-size: 3.4rem;
    font-weight: 300;
    color: #020617;
}

.differentiator-quote {
    grid-column: span 2;
    text-align: center;
    padding: 24px 16px 8px;
    border-top: 1px solid #f1f5f9;
}

.differentiator-quote blockquote {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: #94a3b8;
    font-style: italic;
    font-family: Georgia, 'Times New Roman', serif;
}

.differentiator-quote span {
    color: #020617;
    font-style: normal;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}

.error-main {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 110px;
}

.error-section,
.generic-page-section {
    width: 100%;
    padding: 48px 0 96px;
}

.error-container,
.generic-page-container {
    text-align: center;
}

.error-container h1 {
    font-size: 4rem;
    margin-bottom: 14px;
}

.error-container p {
    margin-bottom: 18px;
    font-size: 1.2rem;
}

.error-container a {
    color: var(--accent);
    text-decoration: underline;
}

.generic-page-content {
    margin-top: 18px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

@media (min-width: 980px) {
    .roi-mark {
        display: block;
    }
}

@media (max-width: 1100px) {
    .about-grid,
    .two-col-grid,
    .differentiator-grid,
    .footer-grid,
    .projects-grid,
    .capability-grid,
    .problem-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .problem-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .capability-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .differentiator-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .differentiator-copy {
        position: static;
    }

    .cta-band {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 820px) {
    .container {
        width: min(100% - 32px, 100%);
    }

    .header-inner {
        min-height: 82px;
    }

    .site-brand img {
        height: 56px;
    }

    .hero-container {
        padding-top: 130px;
    }

    .projects-grid,
    .problem-grid,
    .capability-grid,
    .footer-grid,
    .about-grid,
    .two-col-grid,
    .differentiator-cards {
        grid-template-columns: 1fr;
    }

    .project-card.offset-card {
        margin-top: 0;
    }

    .timeline-line {
        left: 16px;
        transform: none;
    }

    .timeline-item,
    .timeline-item.reverse {
        flex-direction: column;
        align-items: stretch;
    }

    .timeline-dot {
        left: 16px;
        top: 0;
        transform: translate(-50%, 0);
    }

    .timeline-content,
    .timeline-spacer {
        width: 100%;
    }

    .timeline-content,
    .timeline-content.align-left {
        padding-left: 42px;
        padding-right: 0;
        text-align: left;
    }

    .differentiator-feature-card,
    .metric-card-wide,
    .differentiator-quote {
        grid-column: span 1;
    }

    .differentiator-feature-card {
        padding: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .side-menu-inner {
        padding: 28px 24px 48px;
    }

    .header-login-button {
        padding: 9px 14px;
        min-height: 38px;
        font-size: 0.68rem;
    }

    .side-cta-wrap .button,
    .hero-actions .button,
    .cta-band-actions .button,
    .cta-actions .button {
        width: 100%;
    }

    .hero-actions,
    .cta-band-actions,
    .cta-actions {
        flex-direction: column;
    }

    .about-cta-card,
    .capability-modal-panel {
        padding: 32px 24px;
    }
}


.metrics-grid {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 760px;
}

.metric-chip {
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 18px 18px 16px;
    background: rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(10px);
}

.metric-chip strong {
    display: block;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.7rem;
    line-height: 1;
}

.metric-chip span {
    display: block;
    margin-top: 8px;
    color: var(--muted-foreground);
    font-size: 0.9rem;
    line-height: 1.5;
}

.feature-list {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted-foreground);
    font-size: 0.94rem;
    line-height: 1.55;
}

.feature-list .icon {
    width: 17px;
    height: 17px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.capability-card-action-visible {
    opacity: 1;
}

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

.model-card,
.faq-card,
.contact-card {
    padding: 28px;
    border-radius: 28px;
    border: 1px solid var(--border);
    background: var(--card);
    box-shadow: var(--shadow-soft);
}

.model-card h3,
.faq-card h3,
.contact-card h3 {
    margin-top: 12px;
    margin-bottom: 12px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.faq-card p,
.contact-card p,
.model-card p {
    line-height: 1.75;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.centered-pill-list {
    justify-content: center;
}

.pill-item {
    padding: 14px 18px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.76);
    color: var(--foreground);
    line-height: 1.5;
}

.compact-stack-card {
    padding: 18px 20px;
}

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

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.generic-legal-container {
    text-align: left;
    max-width: 920px;
}

.legal-copy {
    display: grid;
    gap: 18px;
}

@media (max-width: 1100px) {
    .metrics-grid,
    .model-grid,
    .contact-grid,
    .faq-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 820px) {
    .metrics-grid,
    .model-grid,
    .contact-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .metric-chip {
        padding: 16px;
    }

    .pill-item {
        width: 100%;
        border-radius: 22px;
    }
}

/* ESC Software 2.0 — corporate landing */
:root{--esc-ink:#07090d;--esc-white:#fff;--esc-line:rgba(11,14,20,.12);--esc-silver:#aab3c3}
html{scroll-behavior:smooth}.esc-home{overflow:hidden}.site-header{background:rgba(255,255,255,.86);backdrop-filter:blur(20px);border-bottom:1px solid rgba(0,0,0,.08)}
.site-brand img{width:82px;height:auto;display:block}.esc-header-cta{font-size:.78rem;text-transform:uppercase;letter-spacing:.12em;color:#080b10;text-decoration:none;border-bottom:1px solid #080b10;padding:8px 0}.header-actions{display:flex;align-items:center;gap:24px}
.esc-menu-logo{width:78px;height:auto}.side-menu{background:#080a0f;color:#fff}.side-nav-link{color:#fff}.side-menu-top{border-bottom-color:rgba(255,255,255,.14)}.esc-menu-bottom{margin-top:auto;padding-top:32px;border-top:1px solid rgba(255,255,255,.14);display:flex;justify-content:space-between;gap:30px;align-items:flex-end}.esc-menu-bottom p{max-width:420px;color:rgba(255,255,255,.62);margin:0}.esc-menu-bottom a{color:#fff;text-decoration:none}
.esc-hero{min-height:100svh;position:relative;background:radial-gradient(circle at 74% 28%,#29313e 0,#11151c 26%,#050609 62%);color:#fff;display:flex;align-items:center;padding:150px 0 90px}.esc-hero-grid{display:grid;grid-template-columns:1.08fr .92fr;align-items:center;gap:5vw}.esc-hero-copy{position:relative;z-index:2}.esc-hero h1{font-size:clamp(3.4rem,7.4vw,7.8rem);line-height:.88;letter-spacing:-.07em;max-width:980px;margin:24px 0 32px}.esc-hero p{font-size:clamp(1rem,1.35vw,1.28rem);line-height:1.7;color:rgba(255,255,255,.7);max-width:690px}.button-light{background:#fff;color:#080a0f;border-color:#fff}.button-outline-light{background:transparent;color:#fff;border:1px solid rgba(255,255,255,.42)}.button-outline-light:hover{background:#fff;color:#080a0f}.esc-hero-proof{display:flex;gap:28px;flex-wrap:wrap;margin-top:48px}.esc-hero-proof span{font-size:.69rem;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.48);padding-left:14px;position:relative}.esc-hero-proof span:before{content:"";width:5px;height:5px;border-radius:50%;background:#fff;position:absolute;left:0;top:5px}
.esc-hero-art{min-height:590px;position:relative;display:grid;place-items:center}.esc-cube{position:relative;width:min(105%,680px);filter:drop-shadow(0 45px 60px rgba(0,0,0,.65));animation:escFloat 7s ease-in-out infinite;z-index:2}.esc-orbit{position:absolute;border:1px solid rgba(255,255,255,.15);border-radius:50%;inset:12%;transform:rotate(-18deg)}.esc-orbit-two{inset:22% 2%;transform:rotate(42deg)}.esc-art-label{position:absolute;font-size:.62rem;letter-spacing:.22em;color:rgba(255,255,255,.5)}.esc-art-label-one{top:14%;left:4%}.esc-art-label-two{right:0;top:43%}.esc-art-label-three{bottom:13%;left:18%}.esc-scroll{position:absolute;left:50%;bottom:26px;transform:translateX(-50%);color:rgba(255,255,255,.5);text-decoration:none;text-transform:uppercase;font-size:.6rem;letter-spacing:.2em}.esc-scroll span{display:block;width:1px;height:38px;background:linear-gradient(#fff,transparent);margin:10px auto 0}@keyframes escFloat{0%,100%{transform:translateY(0) rotate(-2deg)}50%{transform:translateY(-20px) rotate(2deg)}}
.esc-intro{background:#fff}.esc-lead-copy p:first-child{font-size:1.28rem;color:#111}.esc-lead-copy p{line-height:1.8}.esc-service-grid{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid var(--esc-line);border-left:1px solid var(--esc-line)}.esc-service-card{padding:38px;border-right:1px solid var(--esc-line);border-bottom:1px solid var(--esc-line);min-height:430px;transition:.35s ease}.esc-service-card:hover{background:#0a0c10;color:#fff;transform:translateY(-5px)}.esc-service-card:hover p,.esc-service-card:hover .feature-list{color:rgba(255,255,255,.65)}.esc-service-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:42px}.esc-service-top>span{font-size:.68rem;letter-spacing:.14em;color:#8d93a0}.esc-service-card h3{font-size:1.55rem}.esc-service-card p{min-height:80px}.esc-service-card .feature-list{margin-top:24px}
.esc-product-section{background:#f2f3f5}.esc-product-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:8vw;align-items:center}.esc-product-window{background:#0a0c11;border:1px solid rgba(255,255,255,.15);box-shadow:0 40px 80px rgba(8,10,15,.22);border-radius:18px;overflow:hidden;transform:perspective(1000px) rotateY(8deg) rotateX(3deg)}.esc-window-top{height:48px;border-bottom:1px solid rgba(255,255,255,.1);display:flex;align-items:center;gap:7px;padding:0 18px;color:#fff}.esc-window-top span{width:8px;height:8px;border-radius:50%;background:#59606e}.esc-window-top b{margin-left:auto;font-size:.72rem;letter-spacing:.1em}.esc-window-body{height:360px;display:grid;grid-template-columns:75px 1fr}.esc-mini-sidebar{border-right:1px solid rgba(255,255,255,.1);padding:26px 18px}.esc-mini-sidebar i,.esc-mini-rows i{display:block;height:7px;background:rgba(255,255,255,.13);border-radius:10px;margin-bottom:22px}.esc-mini-main{padding:28px}.esc-mini-kpis{display:grid;grid-template-columns:repeat(3,1fr);gap:13px}.esc-mini-kpis i{height:70px;border:1px solid rgba(255,255,255,.11);border-radius:8px}.esc-mini-chart{height:120px;margin:22px 0;background:linear-gradient(135deg,transparent 45%,rgba(255,255,255,.22) 46%,transparent 48%),linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px);background-size:100% 100%,100% 24px}.esc-check-list{list-style:none;padding:0;margin:30px 0}.esc-check-list li{padding:12px 0;border-bottom:1px solid var(--esc-line)}.esc-check-list li:before{content:"↗";margin-right:12px}
.esc-process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--esc-line)}.esc-process-card{background:#f4f5f7;padding:34px;min-height:280px}.esc-process-card>span{font-size:.68rem;letter-spacing:.16em}.esc-process-card h3{font-size:1.55rem;margin-top:70px}.esc-mode-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.esc-mode-card{padding:38px;border:1px solid var(--esc-line);min-height:390px}.esc-mode-featured{background:#0b0d12;color:#fff}.esc-mode-label{font-size:.65rem;letter-spacing:.16em;text-transform:uppercase}.esc-mode-card h3{font-size:1.65rem;margin:55px 0 16px}.esc-mode-card ul{list-style:none;padding:22px 0 0;margin-top:30px;border-top:1px solid currentColor}.esc-mode-card li{margin:12px 0;opacity:.68}.esc-about{background:#05070a;color:#fff}.esc-about .two-col-grid{align-items:center}.esc-about-cube{display:block;width:min(100%,520px);margin:auto;filter:drop-shadow(0 30px 45px rgba(0,0,0,.45))}.esc-about p{color:rgba(255,255,255,.65);font-size:1.1rem;line-height:1.75}.esc-contact-section{background:#080a0f;color:#fff}.esc-contact-panel{text-align:center;max-width:1000px;padding:80px 30px}.esc-contact-logo{width:100px;height:auto;margin:0 auto 48px}.esc-contact-panel h2{font-size:clamp(2.8rem,6vw,6rem);letter-spacing:-.06em}.esc-contact-panel p{max-width:720px;margin:24px auto 35px;color:rgba(255,255,255,.62);font-size:1.1rem}.esc-footer-top{display:grid;grid-template-columns:2fr repeat(3,1fr);gap:50px;padding:70px 0}.esc-footer-brand img{width:100px}.esc-footer-brand p{max-width:320px;color:rgba(255,255,255,.55)}.footer-copy{display:flex;justify-content:space-between;gap:20px}.footer-copy a{color:#fff;text-decoration:none}
@media(max-width:980px){.esc-hero-grid,.esc-product-grid{grid-template-columns:1fr}.esc-hero-copy{padding-top:40px}.esc-hero-art{min-height:420px}.esc-cube{width:min(85%,520px)}.esc-service-grid{grid-template-columns:repeat(2,1fr)}.esc-process-grid{grid-template-columns:repeat(2,1fr)}.esc-mode-grid{grid-template-columns:1fr}.esc-footer-top{grid-template-columns:1fr 1fr}.esc-header-cta{display:none}}
@media(max-width:640px){.esc-hero{padding-top:125px}.esc-hero h1{font-size:clamp(3.1rem,17vw,5.5rem)}.esc-hero-art{min-height:330px}.esc-hero-proof{gap:14px}.esc-service-grid{grid-template-columns:1fr}.esc-service-card{min-height:auto}.esc-process-grid{grid-template-columns:1fr}.esc-product-window{transform:none}.esc-window-body{height:280px}.esc-footer-top{grid-template-columns:1fr}.footer-copy{flex-direction:column}.esc-menu-bottom{align-items:flex-start;flex-direction:column}.site-brand img{width:68px}}

/* ESC Software 2.1 — editorial scale, information pages and pricing */
body{font-size:16px}.section{padding-top:clamp(78px,9vw,128px);padding-bottom:clamp(78px,9vw,128px)}
.esc-home h2,.esc-info-page h2{font-family:"Space Grotesk",sans-serif;font-size:clamp(2.05rem,3.5vw,3.65rem);line-height:1.05;letter-spacing:-.045em;font-weight:400}.esc-home h3,.esc-info-page h3{font-weight:500}.section-heading{max-width:850px}.section-heading p{max-width:650px;font-size:1rem;line-height:1.65}
.esc-hero h1{font-size:clamp(3.15rem,6vw,6.25rem);line-height:.94;font-weight:400}.esc-hero p{font-size:clamp(1rem,1.15vw,1.16rem)}.esc-contact-panel h2{font-size:clamp(2.5rem,4.5vw,4.5rem)}
.site-header .container.header-inner{width:100%;max-width:none;padding:14px 34px}.site-brand img{width:64px}.menu-toggle{width:40px;height:40px;padding:10px}.menu-toggle span{width:19px;margin-left:auto}.esc-header-cta{font-size:.69rem}.site-header{transition:background .3s ease,border-color .3s ease,box-shadow .3s ease}.home .site-header:not(.is-scrolled){background:transparent;border-color:transparent;box-shadow:none}.home .site-header:not(.is-scrolled) .site-brand img{filter:invert(1)}.home .site-header:not(.is-scrolled) .menu-toggle span{background:#fff}.home .site-header:not(.is-scrolled) .esc-header-cta{color:#fff;border-color:#fff}.site-header.is-scrolled{background:rgba(255,255,255,.94);border-color:rgba(0,0,0,.08)}
.esc-text-link{display:inline-flex;align-items:center;gap:8px;color:#0a0c11;text-decoration:none;margin-top:18px;border-bottom:1px solid currentColor;padding-bottom:4px;font-size:.87rem}.esc-text-link .icon{width:15px}.esc-text-link-light{color:#fff}.esc-button-row{display:flex;align-items:center;gap:24px;flex-wrap:wrap}.esc-button-row .esc-text-link{margin-top:0}.esc-centered-link{text-align:center;margin-top:42px}
.esc-info-page{background:#fff}.esc-info-hero{padding:190px 0 110px;min-height:72vh;display:flex;align-items:center;background:#f7f7f8}.esc-info-hero-dark{background:#050608;color:#fff}.esc-info-hero-inner{max-width:1100px}.esc-info-hero h1{font-family:"Space Grotesk",sans-serif;font-size:clamp(3rem,6vw,6rem);font-weight:300;line-height:1;letter-spacing:-.055em;max-width:1050px;margin:24px 0 30px}.esc-info-hero h1 span{color:#a9b0bc}.esc-info-hero p{font-size:clamp(1rem,1.25vw,1.2rem);line-height:1.7;max-width:700px;color:#697181}.esc-info-hero-dark p{color:rgba(255,255,255,.62)}
.esc-editorial-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:9vw;align-items:start}.esc-index{font-size:.65rem;letter-spacing:.18em}.esc-copy-stack p{font-size:1.12rem;line-height:1.85;margin:0 0 22px}.esc-values-grid{display:grid;grid-template-columns:repeat(2,1fr);border-left:1px solid var(--esc-line);border-top:1px solid var(--esc-line)}.esc-values-grid article{padding:40px;border-right:1px solid var(--esc-line);border-bottom:1px solid var(--esc-line);min-height:260px}.esc-values-grid article>span,.esc-feature-matrix article>span{font-size:.65rem;letter-spacing:.16em;color:#89909b}.esc-values-grid h3{font-size:1.35rem;margin-top:54px}.esc-values-grid p{color:#697181;line-height:1.7}.esc-page-cta{background:#07090d;color:#fff}.esc-page-cta .container{display:flex;align-items:center;justify-content:space-between;gap:40px}.esc-page-cta h2{max-width:780px;margin:0}
.esc-workflow-list{border-top:1px solid var(--esc-line)}.esc-workflow-list article{display:grid;grid-template-columns:70px .8fr 1fr;gap:38px;padding:48px 0;border-bottom:1px solid var(--esc-line);align-items:start}.esc-workflow-list article>span{font-size:.68rem;letter-spacing:.16em}.esc-workflow-list small{text-transform:uppercase;letter-spacing:.15em;color:#8c94a0}.esc-workflow-list h2{font-size:clamp(1.8rem,2.6vw,2.7rem);margin:12px 0 0}.esc-workflow-list p{margin:0;color:#68717f;line-height:1.75}.esc-scope-grid{display:grid;grid-template-columns:1fr 1fr;gap:8vw}.esc-scope-grid ul,.esc-large-list{list-style:none;padding:0;margin:0}.esc-scope-grid li,.esc-large-list li{padding:16px 0;border-bottom:1px solid var(--esc-line);font-size:1.05rem}.esc-scope-grid li:before,.esc-large-list li:before{content:"↗";margin-right:12px}
.esc-pipeline-hero{display:grid;grid-template-columns:1.15fr .85fr;align-items:center;gap:5vw}.esc-pipeline-cube{width:min(100%,520px);filter:drop-shadow(0 35px 50px rgba(0,0,0,.55));animation:escFloat 7s ease-in-out infinite}.esc-feature-matrix{display:grid;grid-template-columns:repeat(3,1fr);border-left:1px solid var(--esc-line);border-top:1px solid var(--esc-line)}.esc-feature-matrix article{padding:34px;border-right:1px solid var(--esc-line);border-bottom:1px solid var(--esc-line);min-height:220px}.esc-feature-matrix h3{font-size:1.3rem;margin:46px 0 12px}.esc-feature-matrix p{color:#697181;line-height:1.65}
.esc-pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.esc-price-card{border:1px solid var(--esc-line);padding:38px;display:flex;flex-direction:column;min-height:610px}.esc-price-featured{background:#080a0e;color:#fff}.esc-price-card h2{font-size:1.8rem;margin:46px 0 26px}.esc-price{font-size:.82rem;color:#747d8a;margin-bottom:24px}.esc-price strong{font-size:2.3rem;font-weight:400;color:#080a0e}.esc-price-featured .esc-price,.esc-price-featured .esc-price strong{color:#fff}.esc-price-card>p{color:#6e7682;line-height:1.65}.esc-price-featured>p{color:rgba(255,255,255,.62)}.esc-price-card ul{list-style:none;padding:24px 0;margin:20px 0 32px;border-top:1px solid currentColor}.esc-price-card li{padding:8px 0;opacity:.72}.esc-price-card .button{margin-top:auto}.esc-pricing-note{max-width:900px;margin:34px auto 0;text-align:center;color:#737b88;font-size:.86rem;line-height:1.6}
@media(max-width:980px){.esc-info-hero{min-height:auto}.esc-editorial-grid,.esc-scope-grid,.esc-pipeline-hero{grid-template-columns:1fr}.esc-values-grid,.esc-feature-matrix{grid-template-columns:repeat(2,1fr)}.esc-pricing-grid{grid-template-columns:1fr}.esc-price-card{min-height:auto}.esc-workflow-list article{grid-template-columns:50px 1fr}.esc-workflow-list article>p{grid-column:2}.esc-page-cta .container{align-items:flex-start;flex-direction:column}}
@media(max-width:640px){.site-header .container.header-inner{padding:11px 18px}.site-brand img{width:57px}.esc-hero h1{font-size:clamp(2.85rem,14vw,4.5rem)}.esc-info-hero{padding:145px 0 80px}.esc-info-hero h1{font-size:clamp(2.65rem,13vw,4.4rem)}.esc-values-grid,.esc-feature-matrix{grid-template-columns:1fr}.esc-workflow-list article{grid-template-columns:1fr;gap:14px}.esc-workflow-list article>p{grid-column:auto}.esc-pipeline-cube{max-width:350px;margin:auto}.esc-price-card{padding:28px}.esc-home h2,.esc-info-page h2{font-size:clamp(1.95rem,10vw,3rem)}}
.side-nav{gap:10px}.side-nav-link{font-size:clamp(1.4rem,2.15vw,2.05rem)}

/* ESC Software 2.1.1 — opening hero motion */
.esc-hero-glow{position:absolute;border-radius:50%;pointer-events:none;filter:blur(18px);opacity:.34;will-change:transform}.esc-hero-glow-one{width:48vw;height:48vw;right:-13vw;top:-20vw;background:radial-gradient(circle,rgba(141,158,184,.3),transparent 68%);animation:escGlowDrift 12s ease-in-out infinite alternate}.esc-hero-glow-two{width:35vw;height:35vw;left:-19vw;bottom:-17vw;background:radial-gradient(circle,rgba(86,101,128,.2),transparent 70%);animation:escGlowDriftTwo 15s ease-in-out infinite alternate}
.esc-animated-title{overflow:visible}.esc-title-word{display:inline-block;transform-origin:50% 100%;animation:escWordReveal .92s cubic-bezier(.16,1,.3,1) var(--word-delay) both;will-change:transform,opacity,filter}.esc-title-word-accent{color:#fff;animation-name:escWordRevealAccent}
.esc-hero-copy .section-kicker{animation:escSoftReveal .8s ease-out .04s both}.esc-hero-copy .section-kicker .line-accent{transform-origin:left;animation:escLineDraw .9s cubic-bezier(.16,1,.3,1) .06s both}.esc-hero-description{animation:escSoftReveal .85s ease-out .78s both}.esc-hero-actions{animation:escSoftReveal .85s ease-out .94s both}.esc-hero-proof{animation:escSoftReveal .85s ease-out 1.08s both}.esc-hero-art{animation:escArtReveal 1.25s cubic-bezier(.16,1,.3,1) .48s both}.esc-scroll{animation:escSoftReveal .8s ease-out 1.28s both}
@keyframes escWordReveal{0%{opacity:0;transform:translateY(.72em) rotateX(-18deg);filter:blur(12px)}100%{opacity:1;transform:translateY(0) rotateX(0);filter:blur(0)}}
@keyframes escWordRevealAccent{0%{opacity:0;color:rgba(255,255,255,.08);transform:translateY(.72em);filter:blur(16px)}58%{color:rgba(255,255,255,.18)}100%{opacity:1;color:#fff;transform:translateY(0);filter:blur(0)}}
@keyframes escSoftReveal{0%{opacity:0;transform:translateY(18px);filter:blur(7px)}100%{opacity:1;transform:translateY(0);filter:blur(0)}}
@keyframes escLineDraw{0%{transform:scaleX(0)}100%{transform:scaleX(1)}}
@keyframes escArtReveal{0%{opacity:0;transform:translate3d(35px,30px,0) scale(.92);filter:blur(18px)}100%{opacity:1;transform:translate3d(0,0,0) scale(1);filter:blur(0)}}
@keyframes escGlowDrift{0%{transform:translate3d(0,0,0) scale(.95)}100%{transform:translate3d(-6vw,5vw,0) scale(1.12)}}
@keyframes escGlowDriftTwo{0%{transform:translate3d(0,0,0)}100%{transform:translate3d(8vw,-5vw,0) scale(1.1)}}
@media(prefers-reduced-motion:reduce){.esc-title-word,.esc-hero-copy .section-kicker,.esc-hero-copy .section-kicker .line-accent,.esc-hero-description,.esc-hero-actions,.esc-hero-proof,.esc-hero-art,.esc-scroll,.esc-hero-glow{animation:none!important;opacity:1!important;transform:none!important;filter:none!important}}

/* ESC Software 2.1.2 — centered section headings */
.section-heading.centered{width:100%;margin-left:auto;margin-right:auto;text-align:center}.section-heading.centered h2{max-width:850px;margin-left:auto;margin-right:auto;text-align:center;text-wrap:balance}.section-heading.centered .section-kicker{width:100%;justify-content:center}

/* ESC Software 2.1.3 — menu footer and metallic title movement */
.side-menu-inner{min-height:100%;display:flex;flex-direction:column;padding:28px 32px 34px}.side-menu-top{margin-bottom:28px}.side-menu .menu-close{color:#fff}.side-menu .menu-close:hover{background:rgba(255,255,255,.08)}.esc-menu-footer-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;margin-top:26px;padding-top:24px;border-top:1px solid rgba(255,255,255,.14)}.esc-menu-footer-group h3{margin:0 0 13px;color:rgba(255,255,255,.42);font-size:.62rem;font-weight:600;letter-spacing:.18em;text-transform:uppercase}.esc-menu-footer-group ul{list-style:none;margin:0;padding:0}.esc-menu-footer-group li+li{margin-top:9px}.esc-menu-footer-group a{color:rgba(255,255,255,.68);font-size:.76rem;line-height:1.35;text-decoration:none;transition:color .2s ease}.esc-menu-footer-group a:hover{color:#fff}.esc-menu-bottom{margin-top:26px;padding-top:22px;align-items:flex-start}.esc-menu-bottom p{font-size:.8rem;line-height:1.5;max-width:240px}.esc-menu-bottom a{font-size:.76rem;white-space:nowrap}
.esc-menu-contact,.esc-footer-contact{display:flex;flex-direction:column;gap:7px;align-items:flex-end}.esc-menu-contact a,.esc-footer-contact a{transition:opacity .2s ease}.esc-menu-contact a:hover,.esc-footer-contact a:hover{opacity:.65}
.esc-title-word-accent{color:transparent;-webkit-text-fill-color:transparent;background:linear-gradient(105deg,#697485 0%,#f8fafc 22%,#aeb9c9 42%,#ffffff 58%,#8995a7 76%,#f4f7fb 100%);background-size:260% 100%;background-position:0% 50%;-webkit-background-clip:text;background-clip:text;animation:escWordRevealMetal .92s cubic-bezier(.16,1,.3,1) var(--word-delay) both,escMetalFlow 7s ease-in-out 1.55s infinite alternate;filter:drop-shadow(0 0 18px rgba(190,204,224,.08))}
@keyframes escWordRevealMetal{0%{opacity:0;transform:translateY(.72em);filter:blur(16px)}100%{opacity:1;transform:translateY(0);filter:blur(0)}}
@keyframes escMetalFlow{0%{background-position:0% 50%;filter:drop-shadow(0 0 12px rgba(190,204,224,.05))}50%{filter:drop-shadow(0 0 20px rgba(190,204,224,.13))}100%{background-position:100% 50%;filter:drop-shadow(0 0 12px rgba(190,204,224,.05))}}
@media(max-width:640px){.esc-menu-footer-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:22px 18px}.esc-menu-bottom{flex-direction:column;gap:14px}.esc-menu-bottom a{white-space:normal}.side-menu-inner{padding:24px 24px 30px}}

.esc-contact-layout{display:grid;grid-template-columns:minmax(0,.82fr) minmax(520px,1.18fr);gap:clamp(55px,8vw,120px);align-items:start;padding-top:30px;padding-bottom:30px}.esc-contact-copy{position:sticky;top:130px}.esc-contact-copy .esc-contact-logo{width:82px;margin:0 0 64px}.esc-contact-copy h2{max-width:650px;margin:22px 0 24px;font-size:clamp(2.8rem,5vw,5.35rem);line-height:.94;letter-spacing:-.065em}.esc-contact-copy>p{max-width:580px;color:rgba(255,255,255,.62);font-size:1.04rem;line-height:1.7}.esc-contact-direct{display:flex;flex-direction:column;align-items:flex-start;gap:9px;margin-top:54px}.esc-contact-direct span{margin-bottom:4px;color:rgba(255,255,255,.42);font-size:.67rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase}.esc-contact-direct a{color:#fff;text-decoration:none}.esc-contact-direct a:hover{text-decoration:underline}.esc-contact-form-wrap{padding:clamp(28px,4vw,50px);border:1px solid rgba(255,255,255,.13);background:rgba(255,255,255,.035)}.esc-contact-form{display:flex;flex-direction:column;gap:24px}.esc-form-row{display:grid;grid-template-columns:1fr 1fr;gap:18px}.esc-contact-form label{display:flex;flex-direction:column;gap:10px;color:#fff;font-size:.73rem;font-weight:600;letter-spacing:.055em}.esc-contact-form label>span{color:#cfd4dc}.esc-contact-form label>em{margin-left:auto;color:rgba(255,255,255,.38);font-size:.65rem;font-style:normal;font-weight:500}.esc-contact-form input,.esc-contact-form select,.esc-contact-form textarea{width:100%;border:0;border-bottom:1px solid rgba(255,255,255,.2);border-radius:0;outline:0;background:transparent;color:#fff;font:inherit;font-size:.95rem;font-weight:400;letter-spacing:0;transition:border-color .2s ease,background .2s ease}.esc-contact-form input,.esc-contact-form select{height:52px;padding:0 2px}.esc-contact-form textarea{min-height:130px;padding:14px 2px;resize:vertical}.esc-contact-form select{color:#fff}.esc-contact-form select option{color:#111}.esc-contact-form input::placeholder,.esc-contact-form textarea::placeholder{color:rgba(255,255,255,.32)}.esc-contact-form input:focus,.esc-contact-form select:focus,.esc-contact-form textarea:focus{border-color:#fff;background:rgba(255,255,255,.025)}.esc-form-consent{display:grid!important;grid-template-columns:18px 1fr;gap:12px!important;align-items:start;color:rgba(255,255,255,.56)!important;font-size:.72rem!important;font-weight:400!important;line-height:1.55}.esc-form-consent input{width:16px;height:16px;margin-top:2px;accent-color:#fff}.esc-form-consent span{color:inherit!important}.esc-form-consent a{color:#fff}.esc-form-submit{width:100%;justify-content:space-between;margin-top:4px}.esc-form-note{margin:-10px 0 0;color:rgba(255,255,255,.38);font-size:.7rem;text-align:center}.esc-form-alert{margin-bottom:24px;padding:15px 17px;border:1px solid rgba(255,255,255,.18);font-size:.83rem;line-height:1.45}.esc-form-alert-success{border-color:rgba(126,240,181,.4);background:rgba(126,240,181,.08);color:#c8ffe0}.esc-form-alert-error{border-color:rgba(255,151,151,.4);background:rgba(255,151,151,.08);color:#ffd0d0}.esc-honeypot{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}

@media(max-width:980px){.esc-contact-layout{grid-template-columns:1fr;gap:50px}.esc-contact-copy{position:static}.esc-contact-copy .esc-contact-logo{margin-bottom:45px}.esc-contact-copy h2{max-width:760px}.esc-contact-copy>p{max-width:700px}}
@media(max-width:640px){.esc-form-row{grid-template-columns:1fr}.esc-contact-form-wrap{padding:26px 20px}.esc-contact-layout{gap:38px}.esc-contact-copy h2{font-size:clamp(2.7rem,14vw,4.3rem)}.esc-contact-direct{margin-top:38px}.esc-menu-contact,.esc-footer-contact{align-items:flex-start}}
@media(prefers-reduced-motion:reduce){.esc-title-word-accent{animation:none!important;opacity:1!important;transform:none!important;filter:none!important;background-position:50% 50%}}

/* ESC Software 2.2.0 — confianza, caso Dalvo y canales sociales */
.esc-trusted-section{background:#f6f7f9}.esc-trusted-heading{display:grid;grid-template-columns:1.15fr .85fr;gap:8vw;align-items:end;margin-bottom:52px}.esc-trusted-heading h2{max-width:850px;margin:20px 0 0}.esc-trusted-heading>p{max-width:580px;margin:0;color:#68717f;font-size:1.02rem;line-height:1.75}.esc-trusted-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px}.esc-trusted-card{grid-column:1/-1;display:grid;grid-template-columns:.72fr 1.28fr;overflow:hidden;border:1px solid var(--esc-line);background:#fff;color:#080a0e;text-decoration:none;transition:transform .35s ease,box-shadow .35s ease}.esc-trusted-card:hover{transform:translateY(-5px);box-shadow:0 28px 65px rgba(16,24,40,.11)}.esc-trusted-brand{display:flex;min-height:480px;flex-direction:column;justify-content:space-between;padding:40px;border-right:1px solid var(--esc-line)}.esc-trusted-brand>span{align-self:flex-start;padding:8px 11px;border:1px solid #dbe0e6;color:#68717f;font-size:.62rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase}.esc-trusted-brand img{width:min(100%,300px);height:110px;object-fit:contain;object-position:left center}.esc-trusted-preview{align-self:center;margin:34px 34px 0;border:1px solid #214760;border-radius:10px 10px 0 0;overflow:hidden;background:#071827;box-shadow:0 24px 48px rgba(7,24,39,.22)}.esc-preview-top{display:flex;height:34px;align-items:center;gap:6px;padding:0 12px;border-bottom:1px solid #2b526c;background:#0a1d2f}.esc-preview-top i{width:6px;height:6px;border-radius:50%;background:#45bdd7}.esc-preview-top b{margin-left:auto;color:#b1c9d5;font-size:.48rem;letter-spacing:.14em}.esc-preview-body{display:grid;grid-template-columns:54px 1fr;min-height:260px}.esc-preview-sidebar{display:flex;flex-direction:column;align-items:center;gap:19px;padding:18px 0;border-right:1px solid #2b526c;background:#0a1d2f}.esc-preview-sidebar strong{display:grid;width:25px;height:25px;place-items:center;border-radius:7px;color:#071827;background:#45bdd7;font-size:.65rem}.esc-preview-sidebar i{width:18px;height:4px;border-radius:4px;background:#315a73}.esc-preview-content{padding:18px}.esc-preview-title{display:flex;justify-content:space-between;align-items:center}.esc-preview-title span{width:32%;height:8px;border-radius:5px;background:#f1f8fb}.esc-preview-title i{width:21%;height:18px;border-radius:5px;background:#45bdd7}.esc-preview-kpis{display:grid;grid-template-columns:repeat(3,1fr);gap:9px;margin:18px 0}.esc-preview-kpis i{height:52px;border:1px solid #2b526c;border-radius:6px;background:#0e293e}.esc-preview-chart{display:flex;height:72px;align-items:end;gap:7px;padding:10px;border:1px solid #2b526c;border-radius:6px;background:#0e293e}.esc-preview-chart span{flex:1;border-radius:3px 3px 0 0;background:#45bdd7}.esc-preview-chart span:nth-child(1){height:36%}.esc-preview-chart span:nth-child(2){height:68%}.esc-preview-chart span:nth-child(3){height:52%}.esc-preview-chart span:nth-child(4){height:88%}.esc-preview-chart span:nth-child(5){height:64%}.esc-preview-table{margin-top:12px}.esc-preview-table i{display:block;height:8px;margin-top:7px;border-radius:3px;background:#15344c}.esc-trusted-copy{grid-column:1/-1;display:flex;align-items:end;justify-content:space-between;gap:30px;padding:34px 40px;border-top:1px solid var(--esc-line)}.esc-trusted-copy small{color:#777f8b;font-size:.65rem;font-weight:700;letter-spacing:.15em;text-transform:uppercase}.esc-trusted-copy h3{max-width:780px;margin:10px 0 0;font-size:clamp(1.5rem,2.6vw,2.65rem);font-weight:450;line-height:1.12;letter-spacing:-.035em}.esc-trusted-link{display:inline-flex;align-items:center;gap:8px;white-space:nowrap;font-size:.82rem}.esc-trusted-link .icon{width:16px}

.esc-social-links{display:flex;gap:9px;margin-top:24px}.esc-social-links a,.esc-menu-social a{display:grid;width:38px;height:38px;place-items:center;border:1px solid rgba(255,255,255,.2);border-radius:50%;color:#fff;transition:background .2s ease,border-color .2s ease,transform .2s ease}.esc-social-links a:hover,.esc-menu-social a:hover{border-color:#fff;background:#fff;color:#080a0e;transform:translateY(-2px)}.esc-social-links .icon,.esc-menu-social .icon{width:17px;height:17px}.esc-menu-social{display:flex;gap:8px;margin-top:7px}.esc-menu-social a{width:34px;height:34px}.esc-whatsapp-float{position:fixed;right:22px;bottom:22px;z-index:120;display:flex;align-items:center;gap:9px;padding:13px 17px;border-radius:999px;background:#25d366;color:#072712;text-decoration:none;box-shadow:0 16px 34px rgba(0,0,0,.22);font-size:.78rem;font-weight:750;letter-spacing:.02em;transition:transform .2s ease,box-shadow .2s ease}.esc-whatsapp-float:hover{transform:translateY(-3px);box-shadow:0 20px 40px rgba(0,0,0,.28)}.esc-whatsapp-float .icon{width:20px;height:20px}
.esc-trusted-grid .esc-trusted-card:not(:only-child){grid-column:auto;grid-template-columns:1fr}.esc-trusted-grid .esc-trusted-card:not(:only-child) .esc-trusted-brand{min-height:230px;border-right:0;border-bottom:1px solid var(--esc-line)}.esc-trusted-grid .esc-trusted-card:not(:only-child) .esc-trusted-preview{margin:22px 22px 0}.esc-trusted-grid .esc-trusted-card:not(:only-child) .esc-trusted-copy{align-items:flex-start;flex-direction:column;padding:28px}.esc-trusted-grid .esc-trusted-card:not(:only-child) .esc-trusted-copy h3{font-size:1.5rem}

.esc-case-hero{position:relative;min-height:780px;display:flex;align-items:flex-end;overflow:hidden;background:radial-gradient(circle at 78% 25%,rgba(69,189,215,.2),transparent 34%),linear-gradient(135deg,#061522 0%,#0a1d2f 60%,#071827 100%);color:#fff}.esc-case-hero-grid{position:absolute;inset:0;opacity:.19;background-image:linear-gradient(rgba(69,189,215,.24) 1px,transparent 1px),linear-gradient(90deg,rgba(69,189,215,.24) 1px,transparent 1px);background-size:62px 62px;mask-image:linear-gradient(to bottom,rgba(0,0,0,.5),transparent 85%)}.esc-case-hero-inner{position:relative;padding-top:190px;padding-bottom:100px}.esc-case-hero-copy{max-width:1030px}.esc-case-logo{width:min(310px,60vw);height:105px;margin:56px 0 45px;object-fit:contain;object-position:left center}.esc-case-hero h1{max-width:1000px;margin:0;font-size:clamp(3.4rem,7.5vw,7.7rem);font-weight:400;line-height:.9;letter-spacing:-.075em}.esc-case-hero p{max-width:720px;margin:30px 0 0;color:#b1c9d5;font-size:1.18rem;line-height:1.7}.esc-case-meta{display:flex;flex-wrap:wrap;gap:10px;margin-top:42px}.esc-case-meta span,.esc-demo-badge{padding:9px 12px;border:1px solid rgba(255,255,255,.22);color:#dbe9ef;font-size:.64rem;font-weight:700;letter-spacing:.13em;text-transform:uppercase}.esc-case-intro .esc-copy-stack p:last-child{padding:22px;border-left:3px solid #45bdd7;background:#f4f8fa;color:#42515d;font-size:.9rem}.esc-case-showcase{background:#071827;color:#f1f8fb}.esc-case-showcase-heading{display:flex;align-items:end;justify-content:space-between;gap:35px;margin-bottom:48px}.esc-case-showcase h2{max-width:820px;margin:20px 0 0}.esc-demo-badge{white-space:nowrap;border-color:#2b526c;color:#b1c9d5}.dalvo-system-frame{overflow:hidden;border:1px solid #2b526c;border-radius:14px;background:#071827;box-shadow:0 45px 100px rgba(0,0,0,.36)}.dalvo-frame-topbar{display:grid;grid-template-columns:1fr minmax(260px,.7fr) 1fr;align-items:center;height:66px;padding:0 21px;border-bottom:1px solid #2b526c;background:#0a1d2f}.dalvo-frame-brand{display:flex;align-items:center;gap:10px}.dalvo-frame-brand strong{display:grid;width:30px;height:30px;place-items:center;border-radius:8px;background:#45bdd7;color:#071827}.dalvo-frame-brand span{font-size:.7rem;font-weight:800;letter-spacing:.1em}.dalvo-frame-brand small{padding-left:9px;border-left:1px solid #2b526c;color:#829faf}.dalvo-frame-search{display:flex;align-items:center;justify-content:space-between;padding:9px 11px;border:1px solid #2b526c;border-radius:7px;background:#0e293e;color:#829faf;font-size:.68rem}.dalvo-frame-search kbd{border:1px solid #3e6881;border-radius:4px;padding:2px 5px;background:#15344c;color:#b1c9d5;font:inherit}.dalvo-frame-actions{display:flex;align-items:center;justify-content:flex-end;gap:10px;color:#b1c9d5;font-size:.68rem}.dalvo-frame-actions i{width:29px;height:29px;border:1px solid #2b526c;border-radius:7px;background:#0e293e}.dalvo-frame-layout{display:grid;grid-template-columns:190px 1fr;min-height:690px}.dalvo-frame-sidebar{display:flex;flex-direction:column;gap:7px;padding:25px 14px;border-right:1px solid #2b526c;background:#0a1d2f}.dalvo-frame-sidebar span{padding:11px 13px;border-radius:7px;color:#b1c9d5;font-size:.71rem}.dalvo-frame-sidebar .is-active{background:#193b53;color:#fff}.dalvo-frame-main{padding:32px}.dalvo-frame-heading{display:flex;justify-content:space-between;gap:30px;align-items:start}.dalvo-frame-heading small{color:#45bdd7;font-size:.56rem;font-weight:750;letter-spacing:.14em}.dalvo-frame-heading h3{margin:8px 0 6px;font-size:1.75rem}.dalvo-frame-heading p{margin:0;color:#829faf;font-size:.74rem}.dalvo-frame-heading button{border:0;border-radius:7px;padding:11px 19px;background:#45bdd7;color:#071827;font:inherit;font-size:.7rem;font-weight:800;pointer-events:none}.dalvo-frame-kpis{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin:28px 0}.dalvo-frame-kpis article{padding:20px;border:1px solid #2b526c;border-radius:9px;background:#0e293e}.dalvo-frame-kpis small,.dalvo-frame-panels small{display:block;color:#b1c9d5;font-size:.65rem}.dalvo-frame-kpis strong{display:block;margin:12px 0 8px;font-size:2rem}.dalvo-frame-kpis span{color:#829faf;font-size:.6rem}.dalvo-frame-panels{display:grid;grid-template-columns:1.45fr .75fr;gap:14px}.dalvo-frame-panels>article{min-height:220px;padding:20px;border:1px solid #2b526c;border-radius:9px;background:#0e293e}.dalvo-frame-panels strong{display:block;margin-top:6px;font-size:.86rem}.dalvo-bars{display:flex;height:130px;align-items:end;gap:11px;margin-top:18px;padding-top:15px;border-top:1px solid #2b526c}.dalvo-bars i{flex:1;height:var(--bar);border-radius:4px 4px 0 0;background:linear-gradient(#45bdd7,#1d7598)}.dalvo-frame-summary ul{list-style:none;padding:16px 0 0;margin:16px 0 0;border-top:1px solid #2b526c}.dalvo-frame-summary li{display:flex;justify-content:space-between;gap:20px;padding:9px 0;color:#b1c9d5;font-size:.68rem}.dalvo-frame-summary b{color:#45bdd7;font-size:.6rem}.dalvo-frame-table{margin-top:14px;border:1px solid #2b526c;border-radius:9px;background:#0e293e;overflow:hidden}.dalvo-table-heading{display:flex;justify-content:space-between;padding:17px 20px;border-bottom:1px solid #2b526c;font-size:.72rem}.dalvo-table-heading span{color:#45bdd7}.dalvo-table-row{display:grid;grid-template-columns:1.5fr 1fr 1fr .5fr;gap:16px;padding:13px 20px;border-bottom:1px solid rgba(43,82,108,.65);color:#b1c9d5;font-size:.65rem}.dalvo-table-row:last-child{border-bottom:0}.dalvo-table-labels{color:#829faf;font-size:.56rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase}.dalvo-table-row b{display:inline-block;padding:5px 7px;border-radius:4px;font-size:.56rem}.status-progress{background:rgba(69,189,215,.13);color:#72d2e7}.status-review{background:rgba(210,168,93,.13);color:#e2bd77}.status-plan{background:rgba(130,159,175,.15);color:#b1c9d5}.esc-case-capabilities{display:grid;grid-template-columns:repeat(2,1fr);border-top:1px solid var(--esc-line);border-left:1px solid var(--esc-line)}.esc-case-capabilities article{min-height:300px;padding:38px;border-right:1px solid var(--esc-line);border-bottom:1px solid var(--esc-line)}.esc-case-capabilities article>span{color:#1d83a8;font-size:.65rem;letter-spacing:.16em}.esc-case-capabilities h3{margin:75px 0 13px;font-size:1.45rem}.esc-case-capabilities p{max-width:490px;color:#68717f;line-height:1.7}.esc-case-privacy{background:#eef4f6}.esc-case-privacy-grid{display:grid;grid-template-columns:1fr 1fr;gap:8vw}.esc-case-privacy h2{max-width:720px;margin:20px 0 0}.esc-case-privacy p{margin:0 0 22px;color:#53616d;font-size:1.02rem;line-height:1.8}.esc-case-cta .container>div>span{display:block;margin-bottom:12px;color:rgba(255,255,255,.55);font-size:.68rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase}.esc-case-cta h2{font-size:clamp(2rem,4vw,4rem)}

@media(max-width:980px){.esc-trusted-heading,.esc-case-privacy-grid{grid-template-columns:1fr;gap:28px}.esc-trusted-card{grid-template-columns:1fr}.esc-trusted-brand{min-height:260px;border-right:0;border-bottom:1px solid var(--esc-line)}.esc-trusted-preview{margin-top:26px}.dalvo-frame-topbar{grid-template-columns:1fr 1fr}.dalvo-frame-search{display:none}.dalvo-frame-layout{grid-template-columns:150px 1fr}.dalvo-frame-main{padding:24px}.dalvo-frame-panels{grid-template-columns:1fr}.esc-case-capabilities{grid-template-columns:1fr 1fr}}
@media(max-width:720px){.esc-trusted-copy{align-items:flex-start;flex-direction:column;padding:28px 24px}.esc-trusted-brand{padding:28px 24px}.esc-trusted-preview{margin:0 14px}.esc-case-hero{min-height:680px}.esc-case-hero-inner{padding-top:160px;padding-bottom:75px}.esc-case-logo{margin:42px 0 34px}.esc-case-hero h1{font-size:clamp(3.1rem,16vw,5.5rem)}.esc-case-showcase-heading{align-items:flex-start;flex-direction:column}.dalvo-frame-topbar{height:58px;padding:0 14px}.dalvo-frame-brand small,.dalvo-frame-actions i{display:none}.dalvo-frame-layout{grid-template-columns:1fr;min-height:auto}.dalvo-frame-sidebar{display:none}.dalvo-frame-main{padding:18px}.dalvo-frame-kpis{grid-template-columns:1fr}.dalvo-frame-kpis article:nth-child(3){display:none}.dalvo-frame-panels{grid-template-columns:1fr}.dalvo-frame-summary{display:none}.dalvo-table-row{grid-template-columns:1.5fr 1fr .6fr}.dalvo-table-row span:nth-child(2){display:none}.esc-case-capabilities{grid-template-columns:1fr}.esc-case-capabilities article{min-height:245px;padding:30px}.esc-case-capabilities h3{margin-top:48px}.esc-whatsapp-float{right:14px;bottom:14px;padding:13px}.esc-whatsapp-float span{display:none}.esc-social-links{margin-top:20px}}

/* ESC Software 2.2.1 — formulario compacto y menú lateral refinado */
.menu-overlay{background:rgba(4,7,12,.58);backdrop-filter:blur(3px)}
.side-menu{width:min(490px,100%);height:100dvh;border-left:1px solid rgba(255,255,255,.08);background:radial-gradient(circle at 10% 0,rgba(100,118,148,.18),transparent 38%),linear-gradient(155deg,#151a23 0%,#0e1219 72%,#0b0e14 100%);box-shadow:-28px 0 70px rgba(0,0,0,.35)}
.side-menu-inner{padding:22px 28px 26px}.side-menu-top{margin-bottom:18px;padding-bottom:18px;border-bottom:1px solid rgba(255,255,255,.11)}.esc-menu-logo{width:64px}.side-menu .menu-close{width:36px;height:36px;color:rgba(255,255,255,.8)}
.side-nav{gap:2px;margin-bottom:16px}.side-nav-link{display:flex;padding:6px 0;color:rgba(241,244,249,.82);font-size:clamp(1.02rem,1.35vw,1.28rem);font-weight:400;line-height:1.16;letter-spacing:-.018em;transition:color .2s ease,transform .2s ease}.side-nav-link:hover{color:#fff;transform:translateX(4px)}.link-underline{height:1px;margin-top:3px;background:rgba(255,255,255,.72)}
.esc-menu-footer-grid{gap:16px;margin-top:14px;padding-top:16px;border-top-color:rgba(255,255,255,.1)}.esc-menu-footer-group h3{margin-bottom:9px;font-size:.55rem}.esc-menu-footer-group li+li{margin-top:6px}.esc-menu-footer-group a{font-size:.69rem}.esc-menu-bottom{gap:20px;margin-top:16px;padding-top:16px;border-top-color:rgba(255,255,255,.1)}.esc-menu-bottom p{max-width:210px;font-size:.72rem}.esc-menu-bottom a{font-size:.69rem}.esc-menu-contact{gap:5px}.esc-menu-social{margin-top:5px}.esc-menu-social a{width:30px;height:30px}.esc-menu-social .icon{width:14px;height:14px}

.esc-contact-section{padding-top:clamp(58px,6.5vw,88px);padding-bottom:clamp(58px,6.5vw,88px);background:radial-gradient(circle at 12% 18%,rgba(103,119,145,.12),transparent 32%),#080a0f}.esc-contact-layout{width:min(1180px,calc(100% - 40px));grid-template-columns:minmax(0,1fr) minmax(390px,520px);gap:clamp(42px,6vw,78px);align-items:center;padding-top:0;padding-bottom:0}.esc-contact-copy{position:static}.esc-contact-copy .esc-contact-logo{width:62px;margin:0 0 34px}.esc-contact-copy h2{max-width:560px;margin:18px 0 18px;font-size:clamp(2.3rem,3.8vw,3.85rem);line-height:1;letter-spacing:-.055em}.esc-contact-copy>p{max-width:520px;font-size:.94rem;line-height:1.65}.esc-contact-direct{gap:6px;margin-top:30px}.esc-contact-direct span{font-size:.59rem}.esc-contact-direct a{font-size:.84rem}
.esc-contact-form-wrap{max-width:520px;padding:28px 30px;border-color:rgba(255,255,255,.14);border-radius:14px;background:rgba(255,255,255,.045);box-shadow:0 24px 55px rgba(0,0,0,.16)}.esc-contact-form{gap:15px}.esc-form-row{gap:14px}.esc-contact-form label{gap:6px;font-size:.66rem;letter-spacing:.045em}.esc-contact-form label>em{font-size:.59rem}.esc-contact-form input,.esc-contact-form select,.esc-contact-form textarea{font-size:.86rem}.esc-contact-form input,.esc-contact-form select{height:42px}.esc-contact-form textarea{min-height:88px;padding:10px 2px}.esc-form-consent{grid-template-columns:16px 1fr;gap:9px!important;font-size:.64rem!important;line-height:1.45}.esc-form-consent input{width:14px;height:14px}.esc-form-submit{width:auto;min-width:225px;align-self:flex-start;justify-content:space-between;padding:12px 16px;margin-top:2px}.esc-form-note{margin:-5px 0 0;text-align:left;font-size:.62rem}.esc-form-alert{margin-bottom:16px;padding:12px 14px;font-size:.75rem}

@media(max-width:980px){.esc-contact-layout{width:min(760px,calc(100% - 40px));grid-template-columns:1fr;gap:36px}.esc-contact-copy .esc-contact-logo{margin-bottom:28px}.esc-contact-copy h2{max-width:620px}.esc-contact-copy>p{max-width:620px}.esc-contact-form-wrap{width:100%;max-width:620px}}
@media(max-width:640px){.side-menu-inner{padding:19px 20px 24px}.side-menu-top{margin-bottom:14px;padding-bottom:14px}.side-nav-link{padding:5px 0;font-size:1rem}.esc-menu-footer-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.esc-menu-bottom{gap:12px}.esc-contact-layout{width:min(100% - 28px,620px);gap:30px}.esc-contact-copy .esc-contact-logo{width:54px;margin-bottom:24px}.esc-contact-copy h2{font-size:clamp(2.1rem,11vw,3rem)}.esc-contact-direct{margin-top:24px}.esc-contact-form-wrap{padding:22px 18px;border-radius:11px}.esc-contact-form{gap:14px}.esc-form-row{gap:12px}.esc-contact-form input,.esc-contact-form select{height:40px}.esc-contact-form textarea{min-height:82px}.esc-form-submit{width:100%;min-width:0}.esc-form-note{text-align:center}}

/* ESC Software 2.2.2 — proyectos en tarjetas rectangulares */
.esc-trusted-grid{grid-template-columns:repeat(2,minmax(0,1fr));align-items:start;gap:24px}.esc-trusted-grid>.esc-trusted-card,.esc-trusted-grid>.esc-trusted-card:only-child,.esc-trusted-grid>.esc-trusted-card:not(:only-child){grid-column:auto;grid-template-columns:minmax(150px,.68fr) minmax(0,1.32fr);grid-template-rows:auto auto;min-width:0}.esc-trusted-grid>.esc-trusted-card .esc-trusted-brand,.esc-trusted-grid>.esc-trusted-card:not(:only-child) .esc-trusted-brand{min-height:250px;padding:24px;border-right:1px solid var(--esc-line);border-bottom:0}.esc-trusted-grid>.esc-trusted-card .esc-trusted-brand>span{padding:7px 9px;font-size:.54rem}.esc-trusted-grid>.esc-trusted-card .esc-trusted-brand img{width:100%;height:72px}.esc-trusted-grid>.esc-trusted-card .esc-trusted-preview,.esc-trusted-grid>.esc-trusted-card:not(:only-child) .esc-trusted-preview{align-self:stretch;margin:18px 18px 0}.esc-trusted-grid>.esc-trusted-card .esc-preview-body{grid-template-columns:42px 1fr;min-height:210px}.esc-trusted-grid>.esc-trusted-card .esc-preview-sidebar{gap:15px;padding:14px 0}.esc-trusted-grid>.esc-trusted-card .esc-preview-content{padding:13px}.esc-trusted-grid>.esc-trusted-card .esc-preview-kpis{gap:6px;margin:13px 0}.esc-trusted-grid>.esc-trusted-card .esc-preview-kpis i{height:42px}.esc-trusted-grid>.esc-trusted-card .esc-preview-chart{height:58px}.esc-trusted-grid>.esc-trusted-card .esc-trusted-copy,.esc-trusted-grid>.esc-trusted-card:not(:only-child) .esc-trusted-copy{grid-column:1/-1;align-items:flex-end;flex-direction:row;padding:23px 24px}.esc-trusted-grid>.esc-trusted-card .esc-trusted-copy h3,.esc-trusted-grid>.esc-trusted-card:not(:only-child) .esc-trusted-copy h3{max-width:470px;font-size:clamp(1.12rem,1.6vw,1.42rem);line-height:1.18}.esc-trusted-grid>.esc-trusted-card .esc-trusted-link{font-size:.72rem}
@media(max-width:900px){.esc-trusted-grid{grid-template-columns:1fr}.esc-trusted-grid>.esc-trusted-card,.esc-trusted-grid>.esc-trusted-card:only-child,.esc-trusted-grid>.esc-trusted-card:not(:only-child){grid-template-columns:minmax(180px,.65fr) minmax(0,1.35fr)}}
@media(max-width:640px){.esc-trusted-grid>.esc-trusted-card,.esc-trusted-grid>.esc-trusted-card:only-child,.esc-trusted-grid>.esc-trusted-card:not(:only-child){grid-template-columns:1fr}.esc-trusted-grid>.esc-trusted-card .esc-trusted-brand,.esc-trusted-grid>.esc-trusted-card:not(:only-child) .esc-trusted-brand{min-height:165px;padding:22px;border-right:0;border-bottom:1px solid var(--esc-line)}.esc-trusted-grid>.esc-trusted-card .esc-trusted-brand img{width:min(230px,80%);height:62px}.esc-trusted-grid>.esc-trusted-card .esc-trusted-preview,.esc-trusted-grid>.esc-trusted-card:not(:only-child) .esc-trusted-preview{margin:16px 16px 0}.esc-trusted-grid>.esc-trusted-card .esc-trusted-copy,.esc-trusted-grid>.esc-trusted-card:not(:only-child) .esc-trusted-copy{align-items:flex-start;flex-direction:column;padding:22px}}

.esc-next-project-card{position:relative;isolation:isolate;display:flex;min-height:375px;flex-direction:column;overflow:hidden;padding:28px;border:1px solid #293140;background:radial-gradient(circle at 85% 15%,rgba(135,154,188,.26),transparent 31%),radial-gradient(circle at 4% 100%,rgba(67,79,103,.25),transparent 36%),linear-gradient(145deg,#141a24 0%,#080b11 72%);color:#fff;text-decoration:none;box-shadow:0 24px 55px rgba(14,18,27,.15);transition:transform .35s ease,box-shadow .35s ease,border-color .35s ease}.esc-next-project-card:hover{transform:translateY(-5px);border-color:#65728a;box-shadow:0 34px 75px rgba(9,12,18,.3)}.esc-next-project-card:after{content:"";position:absolute;z-index:-1;inset:-70% -45%;background:linear-gradient(110deg,transparent 43%,rgba(255,255,255,.09) 49%,transparent 55%);transform:translateX(-38%) rotate(7deg);transition:transform .8s cubic-bezier(.16,1,.3,1)}.esc-next-project-card:hover:after{transform:translateX(38%) rotate(7deg)}.esc-next-project-grid{position:absolute;z-index:-2;inset:0;opacity:.16;background-image:linear-gradient(rgba(173,189,217,.23) 1px,transparent 1px),linear-gradient(90deg,rgba(173,189,217,.23) 1px,transparent 1px);background-size:34px 34px;mask-image:linear-gradient(145deg,#000,transparent 78%)}.esc-next-project-top{display:flex;align-items:flex-start;justify-content:space-between;gap:20px}.esc-next-project-top>span{padding:7px 9px;border:1px solid rgba(255,255,255,.22);color:rgba(255,255,255,.66);font-size:.54rem;font-weight:750;letter-spacing:.15em;text-transform:uppercase}.esc-next-project-top>strong{color:rgba(255,255,255,.1);font-family:"Space Grotesk",sans-serif;font-size:4.4rem;font-weight:300;line-height:.8;letter-spacing:-.08em}.esc-next-project-copy{position:relative;z-index:2;max-width:500px;margin-top:auto}.esc-next-project-copy>small{display:block;margin-bottom:13px;color:#9da8ba;font-size:.6rem;font-weight:750;letter-spacing:.14em;text-transform:uppercase}.esc-next-project-copy h3{margin:0;color:#fff;font-size:clamp(1.8rem,2.8vw,2.65rem);font-weight:400;line-height:1.02;letter-spacing:-.055em}.esc-next-project-copy h3 span{color:transparent;-webkit-text-fill-color:transparent;background:linear-gradient(100deg,#8996aa,#fff 46%,#aab7ca 76%,#eef3fb);background-size:190% 100%;-webkit-background-clip:text;background-clip:text;animation:escNextMetal 6s ease-in-out infinite alternate}.esc-next-project-copy p{max-width:440px;margin:17px 0 21px;color:rgba(255,255,255,.58);font-size:.82rem;line-height:1.65}.esc-next-project-link{display:inline-flex;align-items:center;gap:8px;padding-bottom:4px;border-bottom:1px solid rgba(255,255,255,.62);color:#fff;font-size:.72rem}.esc-next-project-link .icon{width:15px}.esc-next-project-orbit{position:absolute;z-index:0;right:-74px;bottom:-84px;width:240px;height:240px;border:1px solid rgba(255,255,255,.11);border-radius:50%}.esc-next-project-orbit i{position:absolute;border:1px solid rgba(255,255,255,.1);border-radius:50%}.esc-next-project-orbit i:nth-child(1){inset:28px}.esc-next-project-orbit i:nth-child(2){inset:63px}.esc-next-project-orbit i:nth-child(3){inset:99px;background:rgba(255,255,255,.07)}
@keyframes escNextMetal{0%{background-position:0% 50%}100%{background-position:100% 50%}}
@media(max-width:640px){.esc-next-project-card{min-height:350px;padding:23px}.esc-next-project-top>strong{font-size:3.6rem}.esc-next-project-copy h3{font-size:clamp(1.8rem,10vw,2.5rem)}}
@media(prefers-reduced-motion:reduce){.esc-next-project-copy h3 span{animation:none}.esc-next-project-card:after{transition:none}}

/* ESC Software 2.2.3 — ritmo escalonado para los proyectos */
@media(min-width:901px){
    .esc-trusted-grid{
        column-gap:clamp(34px,3.6vw,56px);
        row-gap:clamp(58px,6vw,88px);
    }

    .esc-trusted-grid>.esc-next-project-card{
        min-height:438px;
        margin-top:clamp(56px,5vw,76px);
    }
}

@media(max-width:900px){
    .esc-trusted-grid>.esc-next-project-card{
        min-height:375px;
        margin-top:0;
    }
}

@media(max-width:640px){
    .esc-trusted-grid>.esc-next-project-card{
        min-height:350px;
    }
}

/* ESC Software 2.3.0 — TransLArt case + Client Portal demo */
:root{--translart-navy:#000458;--translart-slate:#5b7586;--translart-red:#b90133;--translart-pink:#ec409e}

/* Trusted-company preview: TransLArt */
.esc-trusted-card[data-client-preview="translart"] .esc-trusted-brand{background:linear-gradient(145deg,#fff 0%,#fafbfe 100%)}
.esc-trusted-card[data-client-preview="translart"] .esc-trusted-brand>span{border-color:rgba(185,1,51,.18);color:var(--translart-red)}
.esc-preview--translart{border-color:#d9ddea;background:#f7f8fc;box-shadow:0 24px 48px rgba(0,4,88,.14)}
.esc-preview--translart .esc-preview-top{border-bottom-color:rgba(255,255,255,.12);background:var(--translart-navy)}
.esc-preview--translart .esc-preview-top i:nth-child(1){background:var(--translart-red)}
.esc-preview--translart .esc-preview-top i:nth-child(2){background:var(--translart-pink)}
.esc-preview--translart .esc-preview-top i:nth-child(3){background:#fff}
.esc-preview--translart .esc-preview-top b{color:#fff}
.esc-preview--translart .esc-preview-sidebar{border-right-color:#e0e4eb;background:#fff}
.esc-preview--translart .esc-preview-sidebar strong{background:var(--translart-red);color:#fff}
.esc-preview--translart .esc-preview-sidebar i{background:#c9d0d8}
.esc-preview--translart .esc-preview-content{background:#f7f8fc}
.esc-preview--translart .esc-preview-title span{background:var(--translart-navy)}
.esc-preview--translart .esc-preview-title i{background:var(--translart-pink)}
.esc-preview--translart .esc-preview-kpis i{border-color:#dfe3eb;background:#fff;box-shadow:inset 0 3px 0 rgba(0,4,88,.08)}
.translart-preview-schedule{display:grid;grid-template-columns:repeat(4,1fr);gap:6px;height:58px;padding:9px;border:1px solid #dfe3eb;border-radius:6px;background:#fff}
.translart-preview-schedule span{align-self:end;border-radius:3px 3px 0 0;background:linear-gradient(to top,var(--translart-navy),var(--translart-slate))}
.translart-preview-schedule span:nth-child(1){height:45%}.translart-preview-schedule span:nth-child(2){height:76%;background:linear-gradient(to top,var(--translart-red),var(--translart-pink))}.translart-preview-schedule span:nth-child(3){height:60%}.translart-preview-schedule span:nth-child(4){height:88%;background:linear-gradient(to top,var(--translart-red),var(--translart-pink))}
.esc-preview--translart .esc-preview-table i{background:#d9dfea}

/* Public TransLArt project case */
.translart-case-hero{min-height:780px;background:radial-gradient(circle at 84% 20%,rgba(236,64,158,.14),transparent 27%),radial-gradient(circle at 70% 54%,rgba(0,4,88,.11),transparent 34%),linear-gradient(135deg,#fff 0%,#f5f7fb 64%,#edf0f7 100%);color:var(--translart-navy)}
.translart-case-hero .esc-case-hero-grid{opacity:.22;background-image:linear-gradient(rgba(0,4,88,.14) 1px,transparent 1px),linear-gradient(90deg,rgba(0,4,88,.14) 1px,transparent 1px)}
.translart-case-hero .section-kicker span{color:var(--translart-red)}
.translart-case-hero .line-accent{background:linear-gradient(to right,var(--translart-red),transparent)}
.translart-case-hero .esc-case-hero-inner{padding-bottom:86px}
.translart-case-logo-wrap{display:inline-flex;margin:48px 0 42px;padding:20px 24px;border:1px solid rgba(0,4,88,.09);border-radius:14px;background:#fff;box-shadow:0 24px 55px rgba(0,4,88,.08)}
.translart-case-logo{width:min(420px,70vw);height:auto;margin:0;object-fit:contain}
.translart-case-hero h1{max-width:980px;color:#0a0c16;font-size:clamp(3.1rem,7vw,7rem)}
.translart-case-hero p{max-width:760px;color:#596373}
.translart-case-hero .esc-case-meta span{border-color:rgba(0,4,88,.14);color:#34445a;background:rgba(255,255,255,.52)}
.translart-case-showcase{background:linear-gradient(145deg,#000458 0%,#090d42 52%,#111527 100%)}
.translart-case-showcase .section-kicker span{color:#f4a9d1}.translart-case-showcase .line-accent{background:linear-gradient(to right,var(--translart-pink),transparent)}
.translart-case-showcase .esc-demo-badge{border-color:rgba(236,64,158,.34);color:#f5bedc}
.translart-system-frame{overflow:hidden;border:1px solid rgba(255,255,255,.18);border-radius:16px;background:#f5f7fb;box-shadow:0 46px 100px rgba(0,0,0,.34)}
.translart-frame-topbar{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:20px;min-height:74px;padding:12px 22px;border-bottom:1px solid #e2e6ed;background:#fff}
.translart-frame-brand{display:flex;align-items:center;gap:14px}.translart-frame-brand img{width:138px;height:44px;object-fit:contain;object-position:left center}.translart-frame-brand span{padding-left:13px;border-left:1px solid #e0e4eb;color:#6c7582;font-size:.68rem}
.translart-frame-period{display:flex;flex-direction:column;align-items:center;padding:8px 18px;border:1px solid #e1e5ec;border-radius:9px;background:#f8f9fc}.translart-frame-period small{color:#8b93a1;font-size:.54rem;font-weight:750;letter-spacing:.1em;text-transform:uppercase}.translart-frame-period strong{margin-top:3px;color:var(--translart-navy);font-size:.74rem}
.translart-frame-user{display:flex;align-items:center;justify-content:flex-end;gap:10px;color:#68717f;font-size:.69rem}.translart-frame-user i{display:grid;width:34px;height:34px;place-items:center;border-radius:50%;background:var(--translart-navy);color:#fff;font-style:normal;font-size:.62rem;font-weight:800}
.translart-frame-layout{display:grid;grid-template-columns:190px 1fr;min-height:690px}
.translart-frame-sidebar{display:flex;flex-direction:column;gap:6px;padding:24px 14px;border-right:1px solid #e1e5ec;background:#fff}.translart-frame-sidebar span{padding:11px 13px;border-radius:7px;color:#667180;font-size:.71rem}.translart-frame-sidebar .is-active{background:rgba(0,4,88,.07);color:var(--translart-navy);font-weight:750;box-shadow:inset 3px 0 0 var(--translart-red)}
.translart-frame-main{padding:32px}.translart-frame-heading{display:flex;align-items:flex-start;justify-content:space-between;gap:30px}.translart-frame-heading small{color:var(--translart-red);font-size:.56rem;font-weight:800;letter-spacing:.14em}.translart-frame-heading h3{margin:8px 0 6px;color:#0a0c16;font-size:1.75rem}.translart-frame-heading p{color:#7a8492;font-size:.74rem}.translart-frame-heading button{border:0;border-radius:8px;padding:11px 17px;background:var(--translart-red);color:#fff;font:inherit;font-size:.68rem;font-weight:800;pointer-events:none}
.translart-frame-kpis{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin:27px 0}.translart-frame-kpis article{padding:19px;border:1px solid #e0e4eb;border-radius:10px;background:#fff}.translart-frame-kpis small{display:block;color:#838c99;font-size:.58rem;font-weight:750;letter-spacing:.08em;text-transform:uppercase}.translart-frame-kpis strong{display:block;margin:10px 0 4px;color:var(--translart-navy);font-family:"Space Grotesk",sans-serif;font-size:1.8rem;font-weight:500}.translart-frame-kpis span{color:#8c95a2;font-size:.61rem}
.translart-frame-panels{display:grid;grid-template-columns:1.25fr .75fr;gap:14px;margin-bottom:14px}.translart-attendance-card,.translart-pending-card{padding:20px;border:1px solid #e0e4eb;border-radius:10px;background:#fff}.translart-attendance-card small,.translart-pending-card>small{display:block;color:var(--translart-red);font-size:.53rem;font-weight:800;letter-spacing:.12em}.translart-attendance-card strong,.translart-pending-card>strong{display:block;margin:4px 0 15px;color:#151824;font-size:.78rem}.translart-bars{display:flex;height:88px;align-items:end;gap:9px;padding-top:8px;border-bottom:1px solid #e4e7ed}.translart-bars i{flex:1;height:var(--bar);border-radius:4px 4px 0 0;background:linear-gradient(to top,var(--translart-navy),#45578f)}.translart-bars i:nth-child(even){background:linear-gradient(to top,var(--translart-red),var(--translart-pink))}.translart-bar-labels{display:flex;gap:9px;padding-top:7px}.translart-bar-labels span{flex:1;text-align:center;color:#9aa2ae;font-size:.52rem}.translart-pending-card ul{list-style:none;margin:0;padding:0}.translart-pending-card li{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:11px 0;border-bottom:1px solid #edf0f4;color:#68717f;font-size:.65rem}.translart-pending-card li:last-child{border-bottom:0}.translart-pending-card b{display:grid;min-width:30px;height:26px;place-items:center;border-radius:6px;background:#f5f6f9;color:var(--translart-navy);font-size:.6rem}
.translart-frame-table{overflow:hidden;border:1px solid #e0e4eb;border-radius:10px;background:#fff}.translart-table-heading{display:flex;align-items:center;justify-content:space-between;padding:16px 19px;border-bottom:1px solid #e5e8ee;color:#252a34;font-size:.71rem}.translart-table-heading span{color:var(--translart-red);font-size:.62rem}.translart-table-row{display:grid;grid-template-columns:1.25fr 1fr 1fr .55fr;gap:14px;padding:13px 19px;border-bottom:1px solid #eef0f4;color:#626c79;font-size:.64rem}.translart-table-row:last-child{border-bottom:0}.translart-table-labels{color:#9aa1ac;font-size:.54rem;font-weight:750;letter-spacing:.08em;text-transform:uppercase}.translart-table-row b{display:inline-block;padding:5px 7px;border-radius:5px;font-size:.55rem}.translart-status-active{background:rgba(0,4,88,.08);color:var(--translart-navy)}.translart-status-review{background:rgba(185,1,51,.08);color:var(--translart-red)}
.translart-capabilities article>span{color:var(--translart-red)}.translart-capabilities article:hover{background:rgba(0,4,88,.018)}
.translart-case-privacy{background:linear-gradient(135deg,#f5f6fa,#fff)}.translart-case-privacy .section-kicker span{color:var(--translart-red)}.translart-case-privacy .line-accent{background:linear-gradient(to right,var(--translart-red),transparent)}
.translart-case-cta{background:linear-gradient(135deg,var(--translart-navy),#11163d 64%,#191b29)}
@media(max-width:980px){.translart-frame-topbar{grid-template-columns:1fr 1fr}.translart-frame-period{display:none}.translart-frame-layout{grid-template-columns:150px 1fr}.translart-frame-main{padding:24px}.translart-frame-panels{grid-template-columns:1fr}}
@media(max-width:720px){.translart-case-hero{min-height:690px}.translart-case-logo-wrap{margin:36px 0 30px;padding:15px 17px}.translart-case-logo{width:min(360px,82vw)}.translart-frame-topbar{min-height:62px;padding:10px 14px}.translart-frame-brand img{width:112px}.translart-frame-brand span,.translart-frame-user span{display:none}.translart-frame-layout{grid-template-columns:1fr;min-height:auto}.translart-frame-sidebar{display:none}.translart-frame-main{padding:17px}.translart-frame-heading button{display:none}.translart-frame-kpis{grid-template-columns:1fr 1fr}.translart-frame-kpis article:nth-child(3){grid-column:1/-1}.translart-pending-card{display:none}.translart-table-row{grid-template-columns:1.2fr 1fr .65fr}.translart-table-row span:nth-child(3){display:none}}

/* Portal pages: remove public chrome and define local system */
.esc-client-portal-body{background:#f3f5f8}.esc-client-portal-body .site-shell{min-height:100vh}

/* Login */
.esc-client-login-page{min-height:100vh;background:#f6f7f9;color:#0b0d12}.esc-login-shell{display:grid;grid-template-columns:minmax(420px,.92fr) minmax(520px,1.08fr);min-height:100vh}
.esc-login-brand-panel{position:relative;display:flex;min-height:100vh;flex-direction:column;justify-content:space-between;overflow:hidden;padding:42px clamp(36px,5vw,78px);background:radial-gradient(circle at 80% 14%,rgba(159,174,203,.18),transparent 28%),radial-gradient(circle at 10% 86%,rgba(69,79,104,.2),transparent 32%),#080a0f;color:#fff}.esc-login-brand-panel:before{content:"";position:absolute;inset:0;opacity:.14;background-image:linear-gradient(rgba(255,255,255,.15) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.15) 1px,transparent 1px);background-size:44px 44px;mask-image:linear-gradient(135deg,#000,transparent 75%)}.esc-login-brand-panel>*{position:relative;z-index:1}
.esc-login-back{display:inline-flex;align-items:center;gap:10px;width:max-content;color:rgba(255,255,255,.55);font-size:.72rem}.esc-login-back-icon{width:15px;transform:rotate(180deg)}.esc-login-back:hover{color:#fff}.esc-login-esc-logo{width:126px;margin-bottom:64px}.esc-login-eyebrow{display:block;margin-bottom:18px;color:#99a5b9;font-size:.65rem;font-weight:750;letter-spacing:.2em}.esc-login-brand-copy{max-width:640px}.esc-login-brand-copy h1{margin:0;color:#fff;font-size:clamp(3.4rem,6.2vw,6.8rem);font-weight:350;line-height:.88;letter-spacing:-.07em}.esc-login-brand-copy p{max-width:570px;margin-top:30px;color:rgba(255,255,255,.58);font-size:1rem;line-height:1.75}.esc-login-brand-footer{display:flex;justify-content:space-between;gap:20px;color:rgba(255,255,255,.35);font-size:.61rem;letter-spacing:.06em}
.esc-login-form-panel{display:flex;align-items:center;justify-content:center;padding:56px clamp(30px,6vw,90px);background:#f6f7f9}.esc-login-form-wrap{width:min(100%,540px)}.esc-login-demo-client{display:flex;align-items:center;justify-content:space-between;gap:24px;margin-bottom:54px;padding-bottom:25px;border-bottom:1px solid #dee3ea}.esc-login-demo-client>span{color:#7b8492;font-size:.61rem;font-weight:750;letter-spacing:.15em;text-transform:uppercase}.esc-login-demo-client img{width:180px;height:58px;object-fit:contain;object-position:right center}.esc-login-heading>span{color:#858e9b;font-size:.64rem;font-weight:750;letter-spacing:.14em;text-transform:uppercase}.esc-login-heading h2{margin:11px 0 13px;font-size:clamp(2.3rem,4vw,3.8rem);font-weight:430;letter-spacing:-.055em}.esc-login-heading p{max-width:500px;color:#78818f;line-height:1.65}.esc-login-form{display:flex;flex-direction:column;gap:20px;margin-top:38px}.esc-login-form>label,.esc-login-password{display:flex;flex-direction:column}.esc-login-form label>span{display:block;margin-bottom:8px;color:#4c5562;font-size:.68rem;font-weight:700}.esc-login-form input{width:100%;height:54px;border:1px solid #d9dee6;border-radius:9px;outline:0;background:#fff;padding:0 15px;color:#111722;font:inherit;font-size:.9rem;transition:border-color .2s ease,box-shadow .2s ease}.esc-login-form input:focus{border-color:#8f99a8;box-shadow:0 0 0 4px rgba(95,109,132,.08)}.esc-login-password{position:relative}.esc-login-password input{padding-right:58px}.esc-login-password button{position:absolute;right:8px;bottom:8px;height:38px;border:0;border-radius:7px;background:#f0f2f5;padding:0 12px;color:#58616d;font-size:.66rem;font-weight:750;cursor:pointer}.esc-login-options{display:flex;align-items:center;justify-content:space-between;gap:18px}.esc-login-check{display:flex;align-items:center;gap:9px;color:#6d7683;font-size:.72rem}.esc-login-check input{width:15px;height:15px;margin:0;accent-color:#111722}.esc-login-check span{margin:0!important}.esc-login-options>a{color:#47515e;font-size:.71rem;text-decoration:underline;text-underline-offset:3px}.esc-login-submit{display:flex;align-items:center;justify-content:space-between;width:100%;min-height:56px;border:0;border-radius:9px;background:#0b0d12;padding:0 18px;color:#fff;font:inherit;font-size:.75rem;font-weight:750;letter-spacing:.04em;cursor:pointer;transition:transform .2s ease,background .2s ease}.esc-login-submit:hover{transform:translateY(-1px);background:#1a1e26}.esc-login-submit .icon{width:17px}.esc-login-demo-note{margin-top:18px;padding:13px 14px;border:1px solid #dfe3e9;border-radius:8px;background:#fff;color:#7c8490;font-size:.7rem;line-height:1.55}.esc-login-demo-note strong{color:#363e49}.esc-login-help{display:flex;align-items:center;justify-content:space-between;gap:20px;margin-top:40px;padding-top:22px;border-top:1px solid #e0e4ea;color:#7c8592;font-size:.72rem}.esc-login-help a{color:#111722;font-weight:750}
@media(max-width:980px){.esc-login-shell{grid-template-columns:1fr}.esc-login-brand-panel{min-height:470px;padding:32px 34px}.esc-login-brand-copy h1{font-size:clamp(3.2rem,10vw,5.6rem)}.esc-login-esc-logo{margin-bottom:38px}.esc-login-brand-footer{margin-top:48px}.esc-login-form-panel{padding:58px 30px 70px}}
@media(max-width:620px){.esc-login-brand-panel{min-height:390px;padding:26px 22px}.esc-login-back span{display:none}.esc-login-esc-logo{width:104px;margin-bottom:32px}.esc-login-brand-copy h1{font-size:clamp(3rem,15vw,4.7rem)}.esc-login-brand-copy p{font-size:.88rem}.esc-login-brand-footer span:last-child{display:none}.esc-login-form-panel{padding:42px 20px 58px}.esc-login-demo-client{margin-bottom:38px}.esc-login-demo-client img{width:150px}.esc-login-heading h2{font-size:2.45rem}.esc-login-help{align-items:flex-start;flex-direction:column;gap:7px}}

/* Client app */
.esc-client-app{--client-bg:#f4f6f9;--client-panel:#fff;--client-panel-soft:#f8f9fb;--client-text:#10131a;--client-muted:#76808e;--client-border:#e1e5eb;--client-sidebar:#080a0f;--client-sidebar-text:#fff;--client-accent:#11151d;--client-shadow:0 18px 44px rgba(21,28,41,.07);display:grid;grid-template-columns:260px 1fr;min-height:100vh;background:var(--client-bg);color:var(--client-text)}
.esc-client-dark .esc-client-app{--client-bg:#090b10;--client-panel:#11151c;--client-panel-soft:#0d1117;--client-text:#f4f6f8;--client-muted:#8f9aab;--client-border:#252b35;--client-sidebar:#05070a;--client-accent:#f5f7fb;--client-shadow:0 20px 50px rgba(0,0,0,.24)}
.esc-client-app h1,.esc-client-app h2,.esc-client-app h3,.esc-client-app p{color:inherit}.esc-client-app button,.esc-client-app input,.esc-client-app select,.esc-client-app textarea{font-family:inherit}.esc-client-overlay{display:none}
.esc-client-sidebar{position:sticky;top:0;z-index:30;display:flex;height:100vh;flex-direction:column;padding:24px 18px;background:radial-gradient(circle at 50% 0,rgba(91,104,130,.18),transparent 30%),var(--client-sidebar);color:var(--client-sidebar-text);overflow-y:auto}.esc-client-sidebar-top{display:flex;align-items:center;justify-content:space-between;padding:2px 6px 24px}.esc-client-brand img{width:105px}.esc-client-sidebar-close{display:none;border:0;background:transparent;color:#fff;cursor:pointer}.esc-client-company-card{margin-bottom:26px;padding:15px;border:1px solid rgba(255,255,255,.11);border-radius:12px;background:rgba(255,255,255,.04)}.esc-client-company-card>span{display:block;margin-bottom:12px;color:rgba(255,255,255,.4);font-size:.56rem;font-weight:750;letter-spacing:.15em;text-transform:uppercase}.esc-client-company-logo{display:flex;min-height:74px;align-items:center;padding:10px;border-radius:8px;background:#fff}.esc-client-company-logo img{width:100%;height:48px;object-fit:contain}.esc-client-company-card>small{display:block;margin-top:10px;color:rgba(255,255,255,.45);font-size:.62rem}.esc-client-nav{display:flex;flex-direction:column;gap:5px}.esc-client-nav button{display:grid;grid-template-columns:20px 1fr auto;align-items:center;gap:10px;width:100%;min-height:46px;border:0;border-radius:8px;background:transparent;padding:0 12px;color:rgba(255,255,255,.57);font:inherit;font-size:.75rem;text-align:left;cursor:pointer;transition:background .2s ease,color .2s ease}.esc-client-nav button:hover{background:rgba(255,255,255,.06);color:#fff}.esc-client-nav button.is-active{background:#fff;color:#0d1016}.esc-client-nav .icon{width:17px;height:17px}.esc-client-nav b{display:grid;min-width:22px;height:20px;place-items:center;border-radius:20px;background:rgba(255,255,255,.09);font-size:.56rem}.esc-client-nav button.is-active b{background:#eef0f4;color:#20252e}.esc-client-sidebar-bottom{margin-top:auto;padding-top:24px}.esc-client-support{padding:14px;border-top:1px solid rgba(255,255,255,.1);border-bottom:1px solid rgba(255,255,255,.1)}.esc-client-support span{display:block;color:rgba(255,255,255,.38);font-size:.58rem}.esc-client-support a{display:inline-block;margin-top:5px;color:#fff;font-size:.7rem}.esc-client-logout{display:flex;align-items:center;gap:10px;margin-top:14px;padding:11px 13px;color:rgba(255,255,255,.52);font-size:.7rem}.esc-client-logout:hover{color:#fff}.esc-client-logout .icon{width:16px}
.esc-client-main{min-width:0;background:var(--client-bg)}.esc-client-topbar{position:sticky;top:0;z-index:20;display:flex;min-height:76px;align-items:center;justify-content:space-between;gap:24px;padding:12px clamp(20px,3vw,42px);border-bottom:1px solid var(--client-border);background:color-mix(in srgb,var(--client-bg) 88%,transparent);backdrop-filter:blur(16px)}.esc-client-topbar-left{display:flex;align-items:center;gap:14px}.esc-client-topbar-left>div{display:flex;flex-direction:column}.esc-client-topbar-left small{color:var(--client-muted);font-size:.52rem;font-weight:800;letter-spacing:.15em}.esc-client-topbar-left strong{margin-top:2px;font-size:.8rem}.esc-client-menu-button{display:none;width:38px;height:38px;border:1px solid var(--client-border);border-radius:8px;background:var(--client-panel);padding:9px;cursor:pointer}.esc-client-menu-button span{display:block;height:1.5px;margin:4px 0;background:var(--client-text)}.esc-client-topbar-actions{display:flex;align-items:center;gap:9px}.esc-client-theme-quick,.esc-client-notification{position:relative;display:grid;width:38px;height:38px;place-items:center;border:1px solid var(--client-border);border-radius:8px;background:var(--client-panel);color:var(--client-text);cursor:pointer}.esc-client-theme-quick .icon,.esc-client-notification .icon{width:16px;height:16px}.theme-icon-sun{display:none}.esc-client-dark .theme-icon-moon{display:none}.esc-client-dark .theme-icon-sun{display:block}.esc-client-notification i{position:absolute;top:7px;right:7px;width:6px;height:6px;border:2px solid var(--client-panel);border-radius:50%;background:#b90133}.esc-client-avatar{display:flex;align-items:center;gap:9px;margin-left:5px}.esc-client-avatar>span{display:grid;width:38px;height:38px;place-items:center;border-radius:9px;background:#0e1118;color:#fff;font-size:.65rem;font-weight:800}.esc-client-dark .esc-client-avatar>span{background:#f2f4f7;color:#11151d}.esc-client-avatar>div{display:flex;flex-direction:column}.esc-client-avatar strong{font-size:.68rem}.esc-client-avatar small{color:var(--client-muted);font-size:.58rem}
.esc-client-content{width:min(100%,1500px);margin:0 auto;padding:clamp(28px,4vw,52px)}.esc-client-view{display:none}.esc-client-view.is-active{display:block;animation:clientViewIn .28s ease both}@keyframes clientViewIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
.esc-client-page-heading{display:flex;align-items:flex-end;justify-content:space-between;gap:32px;margin-bottom:34px}.esc-client-page-heading>div:first-child{max-width:800px}.esc-client-page-heading>div:first-child>span{display:block;margin-bottom:10px;color:var(--client-muted);font-size:.59rem;font-weight:800;letter-spacing:.15em;text-transform:uppercase}.esc-client-page-heading h1{margin:0;font-size:clamp(2.4rem,4.3vw,4.9rem);font-weight:420;line-height:.96;letter-spacing:-.06em}.esc-client-page-heading p{max-width:720px;margin-top:14px;color:var(--client-muted);font-size:.88rem;line-height:1.65}.esc-client-page-heading.compact{align-items:center}.esc-client-page-heading.compact h1{font-size:clamp(2.15rem,3.6vw,3.7rem)}.esc-client-period{min-width:210px;padding:13px 15px;border:1px solid var(--client-border);border-radius:10px;background:var(--client-panel)}.esc-client-period small{display:block;color:var(--client-muted);font-size:.55rem}.esc-client-period strong{display:block;margin-top:4px;font-size:.68rem}
.esc-client-stat-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-bottom:18px}.esc-client-stat-grid article{position:relative;min-height:150px;padding:20px;border:1px solid var(--client-border);border-radius:12px;background:var(--client-panel);box-shadow:var(--client-shadow)}.esc-client-stat-icon{display:grid;width:34px;height:34px;place-items:center;margin-bottom:18px;border-radius:8px;background:var(--client-panel-soft);color:var(--client-muted)}.esc-client-stat-icon .icon{width:16px}.esc-client-stat-grid article>span{display:block;color:var(--client-muted);font-size:.6rem;font-weight:750;letter-spacing:.08em;text-transform:uppercase}.esc-client-stat-grid article>strong{display:block;margin:5px 0 3px;font-family:"Space Grotesk",sans-serif;font-size:1.7rem;font-weight:500}.esc-client-stat-grid article>small{color:var(--client-muted);font-size:.61rem}
.esc-client-home-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:18px}.esc-client-panel{border:1px solid var(--client-border);border-radius:12px;background:var(--client-panel);box-shadow:var(--client-shadow)}.esc-client-project-progress,.esc-client-activity-panel{padding:24px}.esc-client-panel-heading{display:flex;align-items:flex-start;justify-content:space-between;gap:18px}.esc-client-panel-heading>div>span{display:block;margin-bottom:6px;color:var(--client-muted);font-size:.55rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase}.esc-client-panel-heading h2,.esc-client-panel-heading h3{margin:0;font-size:1.16rem;font-weight:560;letter-spacing:-.025em}.esc-client-panel-heading button{display:flex;align-items:center;gap:4px;border:0;background:transparent;color:var(--client-muted);font-size:.62rem;cursor:pointer}.esc-client-panel-heading button:hover{color:var(--client-text)}.esc-client-panel-heading button .icon{width:13px}.esc-client-project-meta{display:flex;justify-content:space-between;gap:20px;margin:30px 0 10px;color:var(--client-muted);font-size:.62rem}.esc-client-project-meta b{color:var(--client-text)}.esc-client-progress,.esc-client-project-card-progress{height:7px;overflow:hidden;border-radius:8px;background:var(--client-panel-soft)}.esc-client-progress i,.esc-client-project-card-progress i{display:block;height:100%;border-radius:inherit;background:linear-gradient(90deg,#262d39,#7c8798)}.esc-client-dark .esc-client-progress i,.esc-client-dark .esc-client-project-card-progress i{background:linear-gradient(90deg,#cbd3df,#fff)}.esc-client-milestones{display:grid;grid-template-columns:repeat(4,1fr);gap:0;margin-top:30px}.esc-client-milestones>div{position:relative;padding:25px 15px 0 0;border-top:1px solid var(--client-border)}.esc-client-milestones i{position:absolute;top:-5px;left:0;width:10px;height:10px;border:2px solid var(--client-panel);border-radius:50%;background:#c9ced6;box-shadow:0 0 0 1px var(--client-border)}.esc-client-milestones .is-done i{background:#1c222b}.esc-client-milestones .is-active i{background:#b90133}.esc-client-milestones span{display:block;font-size:.66rem;font-weight:650}.esc-client-milestones small{display:block;margin-top:4px;color:var(--client-muted);font-size:.55rem}.esc-client-activity-list{margin-top:20px}.esc-client-activity-list>div{display:grid;grid-template-columns:12px 1fr auto;gap:11px;padding:14px 0;border-bottom:1px solid var(--client-border)}.esc-client-activity-list>div:last-child{border-bottom:0}.status-dot{width:7px;height:7px;margin-top:5px;border-radius:50%;background:#a9b0bc}.status-dot.is-complete{background:#1e8c62}.status-dot.is-review{background:#c48929}.status-dot.is-progress{background:#5064a7}.esc-client-activity-list strong{display:block;font-size:.67rem;font-weight:650}.esc-client-activity-list span{display:block;margin-top:3px;color:var(--client-muted);font-size:.56rem}.esc-client-activity-list small{color:var(--client-muted);font-size:.54rem;white-space:nowrap}
.esc-client-primary-action,.esc-client-secondary-action{display:inline-flex;align-items:center;justify-content:center;gap:8px;border:0;border-radius:8px;background:#0d1016;padding:11px 15px;color:#fff;font:inherit;font-size:.67rem;font-weight:750;cursor:pointer}.esc-client-dark .esc-client-primary-action{background:#f3f5f8;color:#11151c}.esc-client-primary-action .icon{width:14px}.esc-client-secondary-action{border:1px solid var(--client-border);background:var(--client-panel-soft);color:var(--client-text)}
.esc-client-projects-layout{display:grid;gap:18px}.esc-client-project-card-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.esc-client-project-card{display:block;width:100%;padding:21px;border:1px solid var(--client-border);border-radius:12px;background:var(--client-panel);color:var(--client-text);text-align:left;cursor:pointer;box-shadow:var(--client-shadow);transition:transform .2s ease,border-color .2s ease}.esc-client-project-card:hover{transform:translateY(-2px)}.esc-client-project-card.is-selected{border-color:#8b94a3;box-shadow:0 0 0 2px rgba(86,98,118,.08),var(--client-shadow)}.esc-client-project-card-top{display:flex;align-items:center;justify-content:space-between;gap:16px}.esc-client-project-code{color:var(--client-muted);font-size:.56rem;font-weight:800;letter-spacing:.12em}.esc-client-project-card h2{margin:28px 0 8px;font-size:1.25rem}.esc-client-project-card p{min-height:42px;color:var(--client-muted);font-size:.69rem;line-height:1.5}.esc-client-project-card-progress{margin:23px 0 10px}.esc-client-project-card-bottom{display:flex;align-items:center;justify-content:space-between;gap:18px;color:var(--client-muted);font-size:.58rem}.esc-client-project-card-bottom strong{color:var(--client-text);font-size:.65rem}.esc-client-status{display:inline-flex;align-items:center;justify-content:center;width:max-content;padding:5px 8px;border-radius:20px;font-size:.54rem;font-weight:750;white-space:nowrap}.esc-client-status.is-progress{background:rgba(75,96,164,.1);color:#4b60a4}.esc-client-status.is-plan{background:rgba(121,129,143,.11);color:#6e7785}.esc-client-status.is-review{background:rgba(196,137,41,.12);color:#a66f16}.esc-client-status.is-complete{background:rgba(30,140,98,.11);color:#167852}.esc-client-dark .esc-client-status.is-progress{color:#93a6ea}.esc-client-dark .esc-client-status.is-plan{color:#aab2bf}.esc-client-dark .esc-client-status.is-review{color:#e7b662}.esc-client-dark .esc-client-status.is-complete{color:#70d4ad}
.esc-client-project-detail{overflow:hidden;border:1px solid var(--client-border);border-radius:13px;background:var(--client-panel);box-shadow:var(--client-shadow)}.esc-client-detail-hero{display:flex;align-items:flex-start;justify-content:space-between;gap:26px;padding:28px;border-bottom:1px solid var(--client-border);background:linear-gradient(135deg,var(--client-panel),var(--client-panel-soft))}.esc-client-detail-hero>div>span{color:var(--client-muted);font-size:.55rem;font-weight:800;letter-spacing:.13em}.esc-client-detail-hero h2{margin:8px 0 7px;font-size:1.65rem}.esc-client-detail-hero p{color:var(--client-muted);font-size:.72rem}.esc-client-detail-data{display:grid;grid-template-columns:repeat(4,1fr);border-bottom:1px solid var(--client-border)}.esc-client-detail-data article{min-width:0;padding:19px 22px;border-right:1px solid var(--client-border)}.esc-client-detail-data article:last-child{border-right:0}.esc-client-detail-data span{display:block;color:var(--client-muted);font-size:.54rem;text-transform:uppercase;letter-spacing:.08em}.esc-client-detail-data strong{display:block;margin:7px 0 3px;font-size:.78rem}.esc-client-detail-data small{color:var(--client-muted);font-size:.55rem}.esc-client-detail-data button{max-width:100%;overflow:hidden;border:0;background:transparent;padding:0;color:#5064a7;font:inherit;font-size:.55rem;text-overflow:ellipsis;white-space:nowrap;cursor:pointer}.esc-client-detail-columns{display:grid;grid-template-columns:1.15fr .85fr;gap:15px;padding:15px;background:var(--client-panel-soft)}.esc-client-detail-columns>.esc-client-panel{padding:22px;box-shadow:none}.esc-client-change-list{margin-top:16px}.esc-client-change-list>div{display:grid;grid-template-columns:auto 1fr auto;align-items:start;gap:12px;padding:14px 0;border-bottom:1px solid var(--client-border)}.esc-client-change-list>div:last-child{border-bottom:0}.esc-client-change-list strong{display:block;font-size:.66rem}.esc-client-change-list p{margin-top:3px;color:var(--client-muted);font-size:.58rem;line-height:1.45}.esc-client-change-list>div>small{color:var(--client-muted);font-size:.53rem}.esc-client-request-form,.esc-client-payment-form{display:flex;flex-direction:column;gap:13px;margin-top:16px}.esc-client-request-form label,.esc-client-payment-form label{display:flex;flex-direction:column;gap:6px}.esc-client-request-form label>span,.esc-client-payment-form label>span{color:var(--client-muted);font-size:.57rem;font-weight:700}.esc-client-request-form input,.esc-client-request-form select,.esc-client-request-form textarea,.esc-client-payment-form input,.esc-client-payment-form select,.esc-client-payment-form textarea{width:100%;border:1px solid var(--client-border);border-radius:7px;outline:0;background:var(--client-panel-soft);padding:10px 11px;color:var(--client-text);font:inherit;font-size:.65rem}.esc-client-request-form input,.esc-client-request-form select,.esc-client-payment-form input,.esc-client-payment-form select{height:40px}.esc-client-request-form textarea,.esc-client-payment-form textarea{min-height:82px;resize:vertical}.esc-client-request-form input:focus,.esc-client-request-form select:focus,.esc-client-request-form textarea:focus,.esc-client-payment-form input:focus,.esc-client-payment-form select:focus,.esc-client-payment-form textarea:focus{border-color:#8c96a5}.esc-client-request-form button,.esc-client-payment-form button{display:flex;align-items:center;justify-content:space-between;border:0;border-radius:7px;background:#11151d;padding:11px 13px;color:#fff;font:inherit;font-size:.62rem;font-weight:750;cursor:pointer}.esc-client-dark .esc-client-request-form button,.esc-client-dark .esc-client-payment-form button{background:#f2f4f7;color:#11151d}.esc-client-request-form button .icon,.esc-client-payment-form button .icon{width:14px}.esc-client-request-form>small,.esc-client-payment-form>small{color:var(--client-muted);font-size:.54rem;line-height:1.45}.esc-client-scope-list{margin-top:16px}.esc-client-scope-list>div{display:flex;align-items:center;gap:12px;padding:13px 0;border-bottom:1px solid var(--client-border);font-size:.65rem}.esc-client-scope-list i{display:grid;width:26px;height:26px;place-items:center;border-radius:6px;background:var(--client-panel-soft);color:var(--client-muted);font-style:normal;font-size:.52rem}
.esc-client-payment-summary{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-bottom:18px}.esc-client-payment-summary article{padding:22px;border:1px solid var(--client-border);border-radius:12px;background:var(--client-panel);box-shadow:var(--client-shadow)}.esc-client-payment-summary span{display:block;color:var(--client-muted);font-size:.57rem;font-weight:750;text-transform:uppercase;letter-spacing:.08em}.esc-client-payment-summary strong{display:block;margin:8px 0 4px;font-family:"Space Grotesk",sans-serif;font-size:1.45rem;font-weight:500}.esc-client-payment-summary small{color:var(--client-muted);font-size:.58rem}.esc-client-payments-layout{display:grid;grid-template-columns:1.1fr .9fr;gap:18px}.esc-client-payments-layout>.esc-client-panel{padding:23px}.esc-client-payment-list{margin-top:15px}.esc-client-payment-list>div{display:grid;grid-template-columns:36px 1fr auto auto;align-items:center;gap:11px;padding:14px 0;border-bottom:1px solid var(--client-border)}.esc-client-payment-list>div:last-child{border-bottom:0}.esc-client-payment-icon{display:grid;width:34px;height:34px;place-items:center;border-radius:8px;background:var(--client-panel-soft);color:var(--client-muted)}.esc-client-payment-icon .icon{width:15px}.esc-client-payment-list strong{display:block;font-size:.65rem}.esc-client-payment-list span:not(.esc-client-status){display:block;margin-top:3px;color:var(--client-muted);font-size:.54rem}.esc-client-payment-list b{font-size:.65rem}.esc-client-form-row{display:grid;grid-template-columns:1fr 1fr;gap:10px}.esc-client-upload-drop{position:relative;align-items:center!important;justify-content:center;min-height:126px;border:1px dashed #c9d0db!important;border-radius:9px!important;background:var(--client-panel-soft)!important;text-align:center;cursor:pointer}.esc-client-upload-drop input{position:absolute!important;inset:0!important;width:100%!important;height:100%!important;opacity:0!important;cursor:pointer}.esc-client-upload-icon{display:grid;width:34px;height:34px;place-items:center;border-radius:8px;background:var(--client-panel);color:var(--client-muted)}.esc-client-upload-icon .icon{width:16px}.esc-client-upload-drop strong{font-size:.63rem}.esc-client-upload-drop small{color:var(--client-muted);font-size:.53rem}.esc-client-payment-form>textarea{min-height:68px}
.esc-client-settings-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}.esc-client-settings-grid>.esc-client-panel{padding:24px}.esc-client-profile-card{display:flex;align-items:center;gap:14px;margin:24px 0;padding:16px;border:1px solid var(--client-border);border-radius:10px;background:var(--client-panel-soft)}.esc-client-profile-avatar{display:grid;width:46px;height:46px;place-items:center;border-radius:10px;background:#11151d;color:#fff;font-size:.72rem;font-weight:800}.esc-client-dark .esc-client-profile-avatar{background:#f3f5f8;color:#11151d}.esc-client-profile-card strong{display:block;font-size:.72rem}.esc-client-profile-card span{display:block;margin-top:3px;color:var(--client-muted);font-size:.58rem}.esc-client-settings-data{margin-bottom:18px}.esc-client-settings-data>div{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:12px 0;border-bottom:1px solid var(--client-border)}.esc-client-settings-data span{color:var(--client-muted);font-size:.6rem}.esc-client-settings-data strong{font-size:.62rem;text-align:right}.esc-client-setting-option{display:grid;grid-template-columns:38px 1fr auto;align-items:center;gap:12px;padding:17px 0;border-bottom:1px solid var(--client-border)}.esc-client-setting-option:last-child{border-bottom:0}.esc-client-setting-icon{display:grid;width:36px;height:36px;place-items:center;border-radius:8px;background:var(--client-panel-soft);color:var(--client-muted)}.esc-client-setting-icon .icon{width:16px}.esc-client-setting-option strong{display:block;font-size:.66rem}.esc-client-setting-option span{display:block;margin-top:3px;color:var(--client-muted);font-size:.56rem}.esc-client-switch{position:relative;width:38px;height:22px}.esc-client-switch input{position:absolute;opacity:0;pointer-events:none}.esc-client-switch i{position:absolute;inset:0;border-radius:30px;background:#c8ced7;cursor:pointer;transition:background .2s ease}.esc-client-switch i:before{content:"";position:absolute;top:3px;left:3px;width:16px;height:16px;border-radius:50%;background:#fff;box-shadow:0 2px 5px rgba(0,0,0,.18);transition:transform .2s ease}.esc-client-switch input:checked+i{background:#151a23}.esc-client-dark .esc-client-switch input:checked+i{background:#dce2ea}.esc-client-dark .esc-client-switch input:checked+i:before{background:#11151d}.esc-client-switch input:checked+i:before{transform:translateX(16px)}.esc-client-demo-banner{display:flex;align-items:flex-end;justify-content:space-between;gap:28px;margin-top:18px;padding:24px;border:1px solid var(--client-border);border-radius:12px;background:linear-gradient(135deg,var(--client-panel),var(--client-panel-soft));box-shadow:var(--client-shadow)}.esc-client-demo-banner>div>span{display:block;color:var(--client-muted);font-size:.55rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase}.esc-client-demo-banner strong{display:block;margin:5px 0;font-size:.76rem}.esc-client-demo-banner p{max-width:720px;color:var(--client-muted);font-size:.62rem;line-height:1.5}.esc-client-demo-banner>span{color:var(--client-muted);font-size:.54rem;white-space:nowrap}
.esc-client-toast{position:fixed;right:26px;bottom:26px;z-index:80;max-width:360px;padding:13px 16px;border:1px solid rgba(255,255,255,.13);border-radius:9px;background:#10141b;color:#fff;box-shadow:0 18px 45px rgba(0,0,0,.24);font-size:.68rem;line-height:1.45;opacity:0;pointer-events:none;transform:translateY(10px);transition:opacity .2s ease,transform .2s ease}.esc-client-toast.is-visible{opacity:1;transform:none}
@media(max-width:1180px){.esc-client-app{grid-template-columns:230px 1fr}.esc-client-stat-grid{grid-template-columns:repeat(2,1fr)}.esc-client-home-grid,.esc-client-payments-layout{grid-template-columns:1fr}.esc-client-detail-columns{grid-template-columns:1fr}.esc-client-settings-grid{grid-template-columns:1fr}}
@media(max-width:900px){.esc-client-app{display:block}.esc-client-sidebar{position:fixed;left:0;top:0;width:min(290px,88vw);transform:translateX(-100%);transition:transform .25s cubic-bezier(.2,1,.3,1)}.esc-client-app.client-menu-open .esc-client-sidebar{transform:none}.esc-client-overlay{position:fixed;inset:0;z-index:25;display:block;background:rgba(0,0,0,.42);opacity:0;pointer-events:none;transition:opacity .2s ease}.esc-client-app.client-menu-open .esc-client-overlay{opacity:1;pointer-events:auto}.esc-client-sidebar-close,.esc-client-menu-button{display:block}.esc-client-topbar{padding-left:18px;padding-right:18px}.esc-client-content{padding:28px 20px}.esc-client-detail-data{grid-template-columns:repeat(2,1fr)}.esc-client-detail-data article:nth-child(2){border-right:0}.esc-client-detail-data article:nth-child(-n+2){border-bottom:1px solid var(--client-border)}}
@media(max-width:680px){.esc-client-topbar{min-height:68px}.esc-client-topbar-actions{gap:6px}.esc-client-avatar>div{display:none}.esc-client-theme-quick,.esc-client-notification,.esc-client-avatar>span{width:36px;height:36px}.esc-client-content{padding:24px 14px 40px}.esc-client-page-heading{align-items:flex-start;flex-direction:column;gap:18px;margin-bottom:26px}.esc-client-page-heading h1,.esc-client-page-heading.compact h1{font-size:clamp(2.15rem,11vw,3.2rem)}.esc-client-period{width:100%}.esc-client-stat-grid,.esc-client-project-card-grid,.esc-client-payment-summary{grid-template-columns:1fr}.esc-client-stat-grid article{min-height:132px}.esc-client-home-grid{grid-template-columns:1fr}.esc-client-project-progress,.esc-client-activity-panel{padding:19px}.esc-client-milestones{grid-template-columns:1fr 1fr;gap:12px 0}.esc-client-project-meta{align-items:flex-start;flex-direction:column;gap:5px}.esc-client-detail-hero{align-items:flex-start;flex-direction:column;padding:22px}.esc-client-detail-data{grid-template-columns:1fr}.esc-client-detail-data article{border-right:0!important;border-bottom:1px solid var(--client-border)!important}.esc-client-detail-data article:last-child{border-bottom:0!important}.esc-client-detail-columns{padding:10px}.esc-client-detail-columns>.esc-client-panel{padding:18px}.esc-client-change-list>div{grid-template-columns:1fr}.esc-client-change-list>div>small{display:none}.esc-client-payment-list>div{grid-template-columns:34px 1fr auto}.esc-client-payment-list>div>.esc-client-status{grid-column:2/-1}.esc-client-form-row{grid-template-columns:1fr}.esc-client-demo-banner{align-items:flex-start;flex-direction:column}.esc-client-demo-banner>span{white-space:normal}.esc-client-toast{right:14px;bottom:14px;left:14px;max-width:none}}


/* ESC Software 2.3.1 — ritmo editorial de proyectos + login ESC-only */
@media (min-width:901px){
    .esc-trusted-grid{
        grid-template-columns:minmax(0,1.08fr) minmax(0,.92fr);
        column-gap:clamp(56px,6vw,96px);
        row-gap:clamp(76px,7vw,116px);
        align-items:start;
    }
    .esc-trusted-grid>.esc-trusted-card,
    .esc-trusted-grid>.esc-trusted-card:only-child,
    .esc-trusted-grid>.esc-trusted-card:not(:only-child){
        grid-column:auto;
        align-self:start;
    }
    .esc-trusted-grid>.esc-trusted-card:nth-of-type(1){
        margin-top:0;
    }
    .esc-trusted-grid>.esc-trusted-card:nth-of-type(2){
        margin-top:clamp(72px,7vw,108px);
    }
    .esc-trusted-grid>.esc-trusted-card:nth-of-type(1) .esc-trusted-brand{
        min-height:272px;
    }
    .esc-trusted-grid>.esc-trusted-card:nth-of-type(2) .esc-trusted-brand{
        min-height:232px;
    }
    .esc-trusted-grid>.esc-trusted-card:nth-of-type(1) .esc-preview-body{
        min-height:224px;
    }
    .esc-trusted-grid>.esc-trusted-card:nth-of-type(2) .esc-preview-body{
        min-height:196px;
    }
    .esc-trusted-grid>.esc-trusted-card:nth-of-type(2) .esc-trusted-copy{
        padding-top:20px;
        padding-bottom:20px;
    }
    .esc-trusted-grid>.esc-next-project-card{
        grid-column:2;
        width:100%;
        min-height:410px;
        margin-top:0;
    }
}
@media (min-width:901px) and (max-width:1120px){
    .esc-trusted-grid{
        grid-template-columns:minmax(0,1fr) minmax(0,1fr);
        column-gap:38px;
    }
    .esc-trusted-grid>.esc-trusted-card:nth-of-type(2){
        margin-top:58px;
    }
}
@media (max-width:900px){
    .esc-trusted-grid{
        row-gap:28px;
    }
    .esc-trusted-grid>.esc-trusted-card:nth-of-type(2),
    .esc-trusted-grid>.esc-next-project-card{
        margin-top:0;
    }
}

/* El login pertenece a ESC: no reserva espacio para marcas de clientes. */
.esc-login-form-wrap{padding-top:8px}
.esc-login-heading>span{display:inline-flex;align-items:center;gap:9px}
.esc-login-heading>span:before{content:"";width:22px;height:1px;background:#9aa3af}
@media(max-width:620px){.esc-login-form-wrap{padding-top:0}}


/* ESC Software 2.3.2 — cards consistentes + próximo caso bajo la primera columna */
@media (min-width:901px){
    .esc-trusted-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
        column-gap:clamp(42px,4vw,68px);
        row-gap:clamp(52px,5vw,82px);
        align-items:start;
    }
    .esc-trusted-grid>.esc-trusted-card,
    .esc-trusted-grid>.esc-trusted-card:only-child,
    .esc-trusted-grid>.esc-trusted-card:not(:only-child),
    .esc-trusted-grid>.esc-next-project-card{
        width:100%;
        min-height:496px;
    }
    .esc-trusted-grid>.esc-trusted-card:nth-of-type(1){
        grid-column:1;
        grid-row:1;
        margin-top:0;
    }
    .esc-trusted-grid>.esc-trusted-card:nth-of-type(2){
        grid-column:2;
        grid-row:1;
        margin-top:clamp(34px,3vw,52px);
    }
    .esc-trusted-grid>.esc-next-project-card{
        grid-column:1;
        grid-row:2;
        margin-top:0;
        min-height:496px;
    }
    .esc-trusted-grid>.esc-trusted-card .esc-trusted-brand,
    .esc-trusted-grid>.esc-trusted-card:not(:only-child) .esc-trusted-brand{
        min-height:258px;
    }
    .esc-trusted-grid>.esc-trusted-card .esc-trusted-brand img{
        width:min(100%,252px);
        height:102px;
    }
    .esc-trusted-grid>.esc-trusted-card .esc-trusted-preview,
    .esc-trusted-grid>.esc-trusted-card:not(:only-child) .esc-trusted-preview{
        margin:22px 22px 0;
    }
    .esc-trusted-grid>.esc-trusted-card .esc-preview-body,
    .esc-trusted-grid>.esc-trusted-card:not(:only-child) .esc-preview-body{
        min-height:206px;
    }
    .esc-trusted-grid>.esc-trusted-card .esc-trusted-copy,
    .esc-trusted-grid>.esc-trusted-card:not(:only-child) .esc-trusted-copy{
        min-height:182px;
        align-items:flex-start;
        flex-direction:column;
        justify-content:space-between;
        gap:18px;
        padding:28px;
    }
    .esc-trusted-grid>.esc-trusted-card .esc-trusted-copy h3,
    .esc-trusted-grid>.esc-trusted-card:not(:only-child) .esc-trusted-copy h3{
        font-size:clamp(1.48rem,1.8vw,2rem);
    }
    .esc-trusted-grid>.esc-next-project-card .esc-next-project-copy{
        max-width:440px;
    }
}
@media (min-width:901px) and (max-width:1120px){
    .esc-trusted-grid>.esc-trusted-card:nth-of-type(2){
        margin-top:28px;
    }
}


/* ESC Software 2.3.3 — login motion system */
.esc-client-login-page{overflow:hidden}
.esc-login-brand-panel:after{content:"";position:absolute;inset:-30%;pointer-events:none;background:radial-gradient(circle at 50% 50%,rgba(255,255,255,.08),transparent 24%);opacity:0;transform:translate3d(-8%,5%,0) scale(.92)}
.esc-login-back,.esc-login-brand-copy>* ,.esc-login-brand-footer>* ,.esc-login-heading>* ,.esc-login-form>* ,.esc-login-demo-note,.esc-login-help{opacity:0;transform:translateY(18px)}
.esc-login-brand-copy h1{transform:translateY(28px);clip-path:inset(0 0 100% 0)}
.esc-login-form-panel{position:relative;overflow:hidden}
.esc-login-form-panel:before{content:"";position:absolute;left:-20%;top:-18%;width:48%;height:136%;pointer-events:none;background:linear-gradient(105deg,transparent 20%,rgba(255,255,255,.7) 48%,transparent 74%);opacity:0;transform:translateX(-65%) rotate(6deg)}
.esc-client-login-page.is-ready .esc-login-brand-panel:after{opacity:1;transform:translate3d(0,0,0) scale(1);transition:opacity 1.1s ease .2s,transform 1.4s cubic-bezier(.16,1,.3,1) .2s}
.esc-client-login-page.is-ready .esc-login-form-panel:before{animation:escLoginSweep 1.2s cubic-bezier(.16,1,.3,1) .22s both}
.esc-client-login-page.is-ready .esc-login-back{animation:escLoginRise .62s cubic-bezier(.16,1,.3,1) .08s both}
.esc-client-login-page.is-ready .esc-login-esc-logo{animation:escLoginRise .72s cubic-bezier(.16,1,.3,1) .14s both}
.esc-client-login-page.is-ready .esc-login-eyebrow{animation:escLoginRise .68s cubic-bezier(.16,1,.3,1) .20s both}
.esc-client-login-page.is-ready .esc-login-brand-copy h1{animation:escLoginTitle .9s cubic-bezier(.16,1,.3,1) .24s both}
.esc-client-login-page.is-ready .esc-login-brand-copy p{animation:escLoginRise .76s cubic-bezier(.16,1,.3,1) .34s both}
.esc-client-login-page.is-ready .escp-portfolio-link{animation:escLoginRise .76s cubic-bezier(.16,1,.3,1) .34s both}
.esc-client-login-page.is-ready .esc-login-brand-footer>*:first-child{animation:escLoginRise .7s cubic-bezier(.16,1,.3,1) .46s both}
.esc-client-login-page.is-ready .esc-login-brand-footer>*:last-child{animation:escLoginRise .7s cubic-bezier(.16,1,.3,1) .53s both}
.esc-client-login-page.is-ready .esc-login-heading>span{animation:escLoginRise .66s cubic-bezier(.16,1,.3,1) .22s both}
.esc-client-login-page.is-ready .esc-login-heading h2{animation:escLoginRise .74s cubic-bezier(.16,1,.3,1) .29s both}
.esc-client-login-page.is-ready .esc-login-heading p{animation:escLoginRise .74s cubic-bezier(.16,1,.3,1) .36s both}
.esc-client-login-page.is-ready .esc-login-form>.esc-login-field:nth-of-type(1){animation:escLoginRise .68s cubic-bezier(.16,1,.3,1) .42s both}
.esc-client-login-page.is-ready .esc-login-form>.esc-login-field:nth-of-type(2){animation:escLoginRise .68s cubic-bezier(.16,1,.3,1) .49s both}
.esc-client-login-page.is-ready .esc-login-options{animation:escLoginRise .65s cubic-bezier(.16,1,.3,1) .56s both}
.esc-client-login-page.is-ready .esc-login-submit{animation:escLoginRise .68s cubic-bezier(.16,1,.3,1) .63s both}
.esc-client-login-page.is-ready .esc-login-demo-note{animation:escLoginRise .65s cubic-bezier(.16,1,.3,1) .70s both}
.esc-client-login-page.is-ready .esc-login-help{animation:escLoginRise .65s cubic-bezier(.16,1,.3,1) .77s both}

.esc-login-field{position:relative;transition:transform .24s cubic-bezier(.16,1,.3,1)}
.esc-login-field:after{content:"";position:absolute;left:1px;right:1px;bottom:0;height:2px;border-radius:0 0 9px 9px;background:linear-gradient(90deg,#151922,#7e899a,#151922);transform:scaleX(0);transform-origin:center;opacity:.7;transition:transform .32s cubic-bezier(.16,1,.3,1)}
.esc-login-field.is-focused{transform:translateY(-2px)}
.esc-login-field.is-focused:after{transform:scaleX(1)}
.esc-login-field.is-focused>span{color:#111722;transform:translateX(2px)}
.esc-login-field>span{transition:color .2s ease,transform .2s ease}
.esc-login-form input{transition:border-color .2s ease,box-shadow .25s ease,background .25s ease,transform .25s cubic-bezier(.16,1,.3,1)}
.esc-login-field.is-focused input{background:#fff;box-shadow:0 10px 30px rgba(18,26,39,.08),0 0 0 4px rgba(95,109,132,.07)}
.esc-login-field.is-filled input{border-color:#c6ccd5}
.esc-login-field.is-typing input{animation:escLoginType .22s ease}
.esc-login-password button{transition:background .2s ease,color .2s ease,transform .2s cubic-bezier(.16,1,.3,1)}
.esc-login-password button:hover{background:#e7eaf0;color:#161b23;transform:translateY(-1px)}
.esc-login-password button.is-toggled{animation:escLoginToggle .34s cubic-bezier(.16,1,.3,1)}
.esc-login-options>a{position:relative;transition:color .2s ease}
.esc-login-options>a:after{content:"";position:absolute;left:0;right:0;bottom:-3px;height:1px;background:currentColor;transform:scaleX(0);transform-origin:right;transition:transform .28s cubic-bezier(.16,1,.3,1)}
.esc-login-options>a:hover:after{transform:scaleX(1);transform-origin:left}
.esc-login-check{transition:transform .2s ease,color .2s ease}
.esc-login-check:hover{color:#252c36;transform:translateX(2px)}
.esc-login-check input{transition:transform .2s cubic-bezier(.16,1,.3,1)}
.esc-login-check input:active{transform:scale(.82)}

.esc-login-submit{position:relative;isolation:isolate;overflow:hidden;transition:transform .24s cubic-bezier(.16,1,.3,1),background .2s ease,box-shadow .25s ease}
.esc-login-submit:before{content:"";position:absolute;z-index:-1;inset:0;background:linear-gradient(110deg,transparent 28%,rgba(255,255,255,.16) 48%,transparent 68%);transform:translateX(-120%);transition:transform .65s cubic-bezier(.16,1,.3,1)}
.esc-login-submit:hover{transform:translateY(-2px);box-shadow:0 14px 30px rgba(11,13,18,.16)}
.esc-login-submit:hover:before{transform:translateX(120%)}
.esc-login-submit:active{transform:translateY(0) scale(.992)}
.esc-login-submit-icon{display:grid;place-items:center;transition:transform .28s cubic-bezier(.16,1,.3,1)}
.esc-login-submit:hover .esc-login-submit-icon{transform:translateX(4px)}
.esc-login-submit.is-submitting{pointer-events:none;background:#151a22;box-shadow:0 14px 32px rgba(11,13,18,.18)}
.esc-login-submit.is-submitting .esc-login-submit-icon{width:18px;height:18px;border:2px solid rgba(255,255,255,.28);border-top-color:#fff;border-radius:50%;animation:escLoginSpin .72s linear infinite}
.esc-login-submit.is-submitting .esc-login-submit-icon .icon{display:none}
.esc-login-submit.is-success{background:#171d25}
.esc-login-submit.is-success .esc-login-submit-icon{border:0;animation:none}
.esc-login-submit.is-success .esc-login-submit-icon:after{content:"✓";font-size:.95rem;font-weight:800}
.esc-login-feedback{min-height:0;margin-top:-8px;color:#6d7683;font-size:.68rem;line-height:1.45;opacity:0;transform:translateY(-4px);transition:opacity .25s ease,transform .25s ease,min-height .25s ease}
.esc-login-feedback.is-visible{min-height:18px;opacity:1;transform:none}
.esc-login-form.is-processing .esc-login-field,.esc-login-form.is-processing .esc-login-options{opacity:.62;transition:opacity .25s ease}

@keyframes escLoginRise{from{opacity:0;transform:translateY(18px)}to{opacity:1;transform:none}}
@keyframes escLoginTitle{0%{opacity:0;transform:translateY(30px);clip-path:inset(0 0 100% 0)}100%{opacity:1;transform:none;clip-path:inset(0 0 0 0)}}
@keyframes escLoginSweep{0%{opacity:0;transform:translateX(-65%) rotate(6deg)}35%{opacity:.42}100%{opacity:0;transform:translateX(250%) rotate(6deg)}}
@keyframes escLoginType{0%{transform:scale(1)}50%{transform:scale(1.003)}100%{transform:scale(1)}}
@keyframes escLoginToggle{0%{transform:scale(1)}45%{transform:scale(.92)}100%{transform:scale(1)}}
@keyframes escLoginSpin{to{transform:rotate(360deg)}}

@media(max-width:980px){.esc-client-login-page{overflow:visible}}
@media(prefers-reduced-motion:reduce){
    .esc-login-back,.esc-login-brand-copy>* ,.esc-login-brand-footer>* ,.esc-login-heading>* ,.esc-login-form>* ,.esc-login-demo-note,.esc-login-help{opacity:1!important;transform:none!important;animation:none!important;clip-path:none!important}
    .esc-client-login-page.is-ready .esc-login-brand-panel:after,.esc-client-login-page.is-ready .esc-login-form-panel:before{animation:none!important;transition:none!important;opacity:0!important}
    .esc-login-field,.esc-login-form input,.esc-login-submit,.esc-login-submit-icon,.esc-login-password button{transition:none!important}
}


/* ESC Software 2.3.4 — composición escalonada centrada */
@media (min-width:901px){
    .esc-trusted-grid{
        --esc-trusted-card-height:496px;
        --esc-trusted-grid-gap:clamp(52px,5vw,82px);
        grid-template-columns:repeat(2,minmax(0,1fr));
        grid-template-areas:
            "primary secondary"
            "tertiary secondary";
        column-gap:clamp(42px,4vw,68px);
        row-gap:var(--esc-trusted-grid-gap);
        align-items:start;
    }
    .esc-trusted-grid>.esc-trusted-card,
    .esc-trusted-grid>.esc-trusted-card:only-child,
    .esc-trusted-grid>.esc-trusted-card:not(:only-child),
    .esc-trusted-grid>.esc-next-project-card{
        width:100%;
        min-height:var(--esc-trusted-card-height);
        margin-top:0;
    }
    .esc-trusted-grid>.esc-trusted-card:nth-of-type(1){
        grid-area:primary;
    }
    .esc-trusted-grid>.esc-trusted-card:nth-of-type(2){
        grid-area:secondary;
        align-self:center;
    }
    .esc-trusted-grid>.esc-next-project-card{
        grid-area:tertiary;
        align-self:start;
    }
    .esc-trusted-grid>.esc-trusted-card .esc-trusted-brand,
    .esc-trusted-grid>.esc-trusted-card:not(:only-child) .esc-trusted-brand{
        min-height:258px;
    }
    .esc-trusted-grid>.esc-trusted-card .esc-trusted-brand img{
        width:min(100%,252px);
        height:102px;
    }
    .esc-trusted-grid>.esc-trusted-card .esc-trusted-preview,
    .esc-trusted-grid>.esc-trusted-card:not(:only-child) .esc-trusted-preview{
        margin:22px 22px 0;
    }
    .esc-trusted-grid>.esc-trusted-card .esc-preview-body,
    .esc-trusted-grid>.esc-trusted-card:not(:only-child) .esc-preview-body{
        min-height:206px;
    }
    .esc-trusted-grid>.esc-trusted-card .esc-trusted-copy,
    .esc-trusted-grid>.esc-trusted-card:not(:only-child) .esc-trusted-copy{
        min-height:182px;
        align-items:flex-start;
        flex-direction:column;
        justify-content:space-between;
        gap:18px;
        padding:28px;
    }
    .esc-trusted-grid>.esc-trusted-card .esc-trusted-copy h3,
    .esc-trusted-grid>.esc-trusted-card:not(:only-child) .esc-trusted-copy h3{
        font-size:clamp(1.48rem,1.8vw,2rem);
    }
    .esc-trusted-grid>.esc-next-project-card .esc-next-project-copy{
        max-width:440px;
    }
}
@media (min-width:901px) and (max-width:1120px){
    .esc-trusted-grid{
        --esc-trusted-card-height:472px;
        --esc-trusted-grid-gap:48px;
    }
}
