/* Era Soft × Road studio — public storefront only. Original CSS, existing content. */
:root {
    --rd-bg: #1b1b1b;
    --rd-bg-2: #111111;
    --rd-ink: #ffffff;
    --rd-muted: #b8b8b8;
    --rd-line: rgba(255, 255, 255, 0.08);
    --rd-lime: #FFED00;
    --rd-lime-ink: #1A1200;
    --rd-card: #222222;
    --rd-ghost: #2a2a2a;
    --rd-pill: 999px;
    --rd-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html.es-site,
html.es-site.dark {
    --background: var(--rd-bg);
    --surface: var(--rd-card);
    --surface-secondary: #2a2a2a;
    --foreground: var(--rd-ink);
    --muted: var(--rd-muted);
    --border: var(--rd-line);
    --primary: var(--rd-lime);
    --primary-hover: #FFE14A;
    --accent: var(--rd-lime);
    --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.28);
    --shadow-md: 0 22px 50px rgba(0, 0, 0, 0.38);
    --shadow-glow: 0 16px 40px rgba(255, 237, 0, 0.16);
    --radius-sm: 999px;
    --radius-md: 18px;
    --radius-lg: 22px;
}

html.es-site.light {
    --rd-bg: #f4f4f4;
    --rd-bg-2: #ffffff;
    --rd-ink: #111111;
    --rd-muted: #5c5c5c;
    --rd-line: rgba(17, 17, 17, 0.08);
    --rd-card: #ffffff;
    --rd-ghost: #ececec;
    --background: #f4f4f4;
    --surface: #ffffff;
    --surface-secondary: #ececec;
    --foreground: #111111;
    --muted: #5c5c5c;
    --border: rgba(17, 17, 17, 0.1);
    --primary: #C47A00;
    --primary-hover: #A86500;
    --accent: #C47A00;
    --shadow-sm: 0 8px 20px rgba(17, 17, 17, 0.06);
    --shadow-md: 0 18px 40px rgba(17, 17, 17, 0.08);
    --shadow-glow: 0 12px 28px rgba(255, 237, 0, 0.16);
}

html.es-site { background: var(--rd-bg); }
html.es-site.dark { color-scheme: dark; }
html.es-site.light { color-scheme: light; }

body.es-site.es-road {
    background: var(--rd-bg) !important;
    color: var(--rd-ink);
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

body.es-site.es-road .font-display,
body.es-site.es-road h1,
body.es-site.es-road h2,
body.es-site.es-road h3 {
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    letter-spacing: -0.035em;
}

body.es-site.es-road .es-atmosphere,
body.es-site.es-road .es-atmosphere__mesh,
body.es-site.es-road .es-velaris-bg {
    background: var(--rd-bg) !important;
}
body.es-site.es-road .es-atmosphere__grid { opacity: 0.08; }
body.es-site.es-road .es-atmosphere__vignette {
    background: radial-gradient(ellipse 70% 60% at 50% 20%, transparent 36%, rgba(0, 0, 0, 0.45) 100%);
}
html.light body.es-site.es-road .es-atmosphere__vignette {
    background: radial-gradient(ellipse 70% 60% at 50% 20%, transparent 40%, rgba(244, 244, 244, 0.7) 100%);
}

/* Announcement ticker */
.es-announce {
    position: relative;
    z-index: 80;
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 38px;
    padding: 0 20px;
    background: #0d0d0d;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}
html.light .es-announce {
    background: #111;
    color: #fff;
}
.es-announce-track {
    display: flex;
    align-items: center;
    gap: 2.6rem;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    animation: es-rd-marquee 32s linear infinite;
}
.es-announce-track span {
    position: relative;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.01em;
}
.es-announce-track span::after {
    content: "·";
    margin-left: 2.6rem;
    opacity: 0.45;
}
.es-announce-locale {
    display: none;
    flex: none;
    align-items: center;
    gap: 0.55rem;
    font-size: 12px;
    z-index: 2;
    background: #0d0d0d;
    padding-left: 0.8rem;
}
@media (min-width: 768px) {
    .es-announce-locale { display: flex; }
}
.es-announce-locale a {
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
}
.es-announce-locale a.is-active,
.es-announce-locale a:hover { color: #fff; }
@keyframes es-rd-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

body.es-site.es-road .es-utilbar { display: none !important; }

/* Header */
body.es-site.es-road .es-site-header {
    background: rgba(27, 27, 27, 0.72) !important;
    border-bottom: 1px solid var(--rd-line) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
html.light body.es-site.es-road .es-site-header {
    background: rgba(244, 244, 244, 0.86) !important;
}
body.es-site.es-road .es-nav-link {
    color: var(--rd-ink);
    font-weight: 500;
    font-size: 0.92rem;
    border-radius: 0;
    padding: 0 0.85rem;
}
body.es-site.es-road .es-nav-link:hover {
    background: transparent;
    color: var(--rd-lime);
}
html.light body.es-site.es-road .es-nav-link:hover { color: #C47A00; }

body.es-site.es-road .es-icon-hit,
body.es-site.es-road .es-theme-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--rd-pill);
    border: 0;
    background: var(--rd-ghost);
    color: var(--rd-ink);
}
body.es-site.es-road .es-icon-hit:hover,
body.es-site.es-road .es-theme-btn:hover {
    background: var(--rd-lime);
    color: var(--rd-lime-ink);
    box-shadow: none;
    transform: none;
}

body.es-site.es-road .es-nav-cta {
    min-height: 40px;
    border-radius: var(--rd-pill) !important;
    font-weight: 600;
    padding: 0 1.15rem;
}
body.es-site.es-road .es-nav-cta.is-ghost {
    background: var(--rd-ghost) !important;
    border: 0 !important;
    color: var(--rd-ink) !important;
}
body.es-site.es-road .es-nav-cta.is-primary,
body.es-site.es-road .es-btn-primary,
body.es-site.es-road .es-hero-btn-solid,
body.es-site.es-road .es-btn {
    border-radius: var(--rd-pill) !important;
}
body.es-site.es-road .es-nav-cta.is-primary,
body.es-site.es-road .es-btn-primary,
body.es-site.es-road .es-hero-btn-solid {
    background: var(--rd-lime) !important;
    color: var(--rd-lime-ink) !important;
    border: 0 !important;
    box-shadow: none !important;
}
body.es-site.es-road .es-btn-secondary,
body.es-site.es-road .es-hero-btn-ghost {
    background: var(--rd-ghost) !important;
    color: var(--rd-ink) !important;
    border: 0 !important;
    border-radius: var(--rd-pill) !important;
}
body.es-site.es-road .es-btn-primary:hover,
body.es-site.es-road .es-hero-btn-solid:hover,
body.es-site.es-road .es-nav-cta.is-primary:hover {
    filter: brightness(1.06);
    transform: none;
    box-shadow: none;
}

body.es-site.es-road .es-logo-dot,
body.es-site.es-road .es-logo-accent { fill: #FFED00; }
body.es-site.es-road .es-nav-link {
    gap: 0.28rem;
}
body.es-site.es-road .es-nav-caret {
    width: 0.85rem;
    height: 0.85rem;
    opacity: 0.5;
    transition: transform 0.22s var(--rd-ease), opacity 0.22s, color 0.22s;
}
body.es-site.es-road .es-mega.is-open .es-nav-link,
body.es-site.es-road .es-mega:hover .es-nav-link {
    color: var(--rd-lime);
}
body.es-site.es-road .es-mega.is-open .es-nav-caret,
body.es-site.es-road .es-mega:hover .es-nav-caret {
    opacity: 1;
    color: var(--rd-lime);
    transform: rotate(180deg);
}
html.light body.es-site.es-road .es-mega.is-open .es-nav-link,
html.light body.es-site.es-road .es-mega:hover .es-nav-link,
html.light body.es-site.es-road .es-mega.is-open .es-nav-caret,
html.light body.es-site.es-road .es-mega:hover .es-nav-caret {
    color: #C47A00;
}

body.es-site.es-road .es-mega-panel {
    width: min(26.5rem, 86vw);
    margin-top: 0.45rem;
    padding: 0.85rem 0.7rem 0.65rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    border-radius: 20px !important;
    background: #171717 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.48) !important;
}
body.es-site.es-road .es-mega-panel.is-wide {
    width: min(42rem, 90vw);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.28rem 0.4rem;
}
body.es-site.es-road .es-mega-kicker {
    grid-column: 1 / -1;
    margin: 0;
    padding: 0.1rem 0.75rem 0.55rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rd-lime);
}
body.es-site.es-road .es-mega-link {
    display: flex !important;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 0.75rem !important;
    border-radius: 14px;
    color: #fff !important;
    text-decoration: none;
    transition: background 0.2s var(--rd-ease), transform 0.2s var(--rd-ease);
}
body.es-site.es-road .es-mega-ico {
    flex: 0 0 2.45rem;
    width: 2.45rem;
    height: 2.45rem;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #242424;
    color: var(--rd-lime);
    transition: transform 0.22s var(--rd-ease), background 0.22s, color 0.22s, box-shadow 0.22s;
}
body.es-site.es-road .es-mega-copy {
    min-width: 0;
    flex: 1;
}
body.es-site.es-road .es-mega-copy strong {
    display: block;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #fff;
    line-height: 1.2;
}
body.es-site.es-road .es-mega-copy em,
body.es-site.es-road .es-mega-copy span {
    display: block;
    margin-top: 0.18rem;
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    color: #9a9a9a;
    opacity: 1;
    line-height: 1.35;
}
body.es-site.es-road .es-mega-go {
    flex: none;
    display: grid;
    place-items: center;
    color: var(--rd-lime);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.2s var(--rd-ease), transform 0.2s var(--rd-ease);
}
body.es-site.es-road .es-mega-link:hover {
    background: rgba(255, 237, 0, 0.08) !important;
}
body.es-site.es-road .es-mega-link:hover .es-mega-ico {
    background: var(--rd-lime);
    color: #1A1200;
    transform: translateY(-1px) scale(1.05);
    box-shadow: 0 8px 18px rgba(255, 237, 0, 0.28);
}
body.es-site.es-road .es-mega-link:hover .es-mega-copy strong { color: #fff; }
body.es-site.es-road .es-mega-link:hover .es-mega-go {
    opacity: 1;
    transform: translateX(0);
}
body.es-site.es-road .es-mega-foot {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.25rem;
    padding: 0.7rem 0.85rem;
    border-radius: 12px;
    background: #222;
    color: #fff;
    font-size: 0.86rem;
    font-weight: 650;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
body.es-site.es-road .es-mega-foot:hover {
    background: var(--rd-lime);
    color: #1A1200;
}

html.light body.es-site.es-road .es-mega-panel {
    background: #fff !important;
    border-color: rgba(17, 17, 17, 0.08) !important;
    box-shadow: 0 22px 44px rgba(17, 17, 17, 0.1) !important;
}
html.light body.es-site.es-road .es-mega-kicker { color: #C47A00; }
html.light body.es-site.es-road .es-mega-link { color: #111 !important; }
html.light body.es-site.es-road .es-mega-copy strong { color: #111; }
html.light body.es-site.es-road .es-mega-copy em,
html.light body.es-site.es-road .es-mega-copy span { color: #5c5c5c; }
html.light body.es-site.es-road .es-mega-ico {
    background: #f0f0f0;
    color: #C47A00;
}
html.light body.es-site.es-road .es-mega-link:hover {
    background: rgba(18, 181, 14, 0.08) !important;
}
html.light body.es-site.es-road .es-mega-link:hover .es-mega-ico {
    background: #C47A00;
    color: #fff;
}
html.light body.es-site.es-road .es-mega-link:hover .es-mega-copy strong { color: #111; }
html.light body.es-site.es-road .es-mega-go { color: #C47A00; }
html.light body.es-site.es-road .es-mega-foot {
    background: #f4f4f4;
    color: #111;
}
html.light body.es-site.es-road .es-mega-foot:hover {
    background: #C47A00;
    color: #fff;
}

/* Hero */
body.es-site.es-road .es-hero-ds {
    padding: 3.2rem 0 1.2rem;
}
@media (min-width: 1024px) {
    body.es-site.es-road .es-hero-ds { padding: 4.4rem 0 2rem; }
}
body.es-site.es-road .es-hero-badge {
    background: transparent;
    border: 0;
    padding: 0;
    color: var(--rd-lime);
    letter-spacing: 0.16em;
}
html.light body.es-site.es-road .es-hero-badge { color: #C47A00; }
body.es-site.es-road .es-hero-title {
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    max-width: 16ch;
}
body.es-site.es-road .es-hero-lead {
    color: var(--rd-muted);
    font-size: 1.05rem;
    max-width: 34rem;
}
body.es-site.es-road .es-hero-ctas a {
    min-height: 48px;
    padding: 0 1.45rem;
    font-weight: 600;
}
body.es-site.es-road .es-hero-progress {
    height: 2px;
    margin-top: 2.4rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 99px;
    overflow: hidden;
}
html.light body.es-site.es-road .es-hero-progress { background: rgba(17, 17, 17, 0.08); }
body.es-site.es-road .es-hero-progress > i {
    display: block;
    width: 34%;
    height: 100%;
    background: var(--rd-lime);
}

body.es-site.es-road .es-infra-card {
    border: 0 !important;
    background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(255, 237, 0, 0.08), transparent 58%), #141414 !important;
    min-height: 22rem;
    border-radius: 28px !important;
}
html.light body.es-site.es-road .es-infra-card {
    background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(255, 237, 0, 0.1), transparent 58%), #fff !important;
}
body.es-site.es-road .es-trust { display: none; }

/* Stage / metrics */
.es-road-stage {
    padding: 3.5rem 0 1.5rem;
    text-align: center;
}
.es-road-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem 1rem;
    max-width: 920px;
    margin: 0 auto 1.8rem;
}
@media (min-width: 900px) {
    .es-road-metrics { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.es-road-metrics strong {
    display: block;
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1;
    color: var(--rd-ink);
}
.es-road-metrics span {
    display: block;
    margin-top: 0.55rem;
    font-size: 0.82rem;
    color: var(--rd-muted);
}
.es-road-stage-lead {
    max-width: 38rem;
    margin: 0 auto 1.5rem;
    color: var(--rd-muted);
    font-size: 0.98rem;
}
.es-road-stage-ctas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem;
}

.es-road-marquee {
    overflow: hidden;
    margin-top: 2.8rem;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.es-road-marquee-track {
    display: flex;
    gap: 2.4rem;
    width: max-content;
    animation: es-rd-marquee 26s linear infinite;
    color: var(--rd-muted);
    font-size: 1.15rem;
    font-weight: 600;
}
.es-road-marquee-track b { color: var(--rd-ink); font-weight: 600; }

.es-partners {
    padding: 2.4rem 0 1.2rem;
}
.es-partners-head {
    text-align: center;
    margin: 0 auto 1.7rem;
    max-width: 36rem;
}
.es-partners-head .es-section-lead {
    margin-left: auto;
    margin-right: auto;
}
.es-partners-rail {
    overflow: hidden;
    padding: 0.2rem 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.es-partners-track {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: max-content;
    animation: es-rd-marquee 44s linear infinite;
    will-change: transform;
}
.es-partners-rail:hover .es-partners-track {
    animation-play-state: paused;
}
.es-partners-item {
    flex: 0 0 200px;
    width: 200px;
    height: 108px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 6px 8px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}
.es-partners-item img {
    display: block;
    width: 184px;
    height: 96px;
    object-fit: contain;
    object-position: center;
}
html.light .es-partners-item {
    background: #fff;
    border-color: rgba(17, 17, 17, 0.08);
    box-shadow: 0 8px 18px rgba(17, 17, 17, 0.05);
}

/* Sections */
body.es-site.es-road .es-section-title {
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    color: var(--rd-ink);
}
body.es-site.es-road .es-section-lead {
    margin-top: 0.7rem;
    color: var(--rd-muted);
    max-width: 36rem;
}

body.es-site.es-road .es-sol-grid {
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    body.es-site.es-road .es-sol-grid { grid-template-columns: repeat(3, 1fr); }
}
body.es-site.es-road .es-sol-card,
body.es-site.es-road .es-plan-card,
body.es-site.es-road .es-step-card,
body.es-site.es-road .es-catalog-card,
body.es-site.es-road .es-card-service,
body.es-site.es-road .es-metric {
    background: var(--rd-card) !important;
    border: 1px solid var(--rd-line) !important;
    border-radius: 22px !important;
    box-shadow: none !important;
}
body.es-site.es-road .es-sol-card:hover,
body.es-site.es-road .es-plan-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 237, 0, 0.35) !important;
    box-shadow: var(--shadow-glow) !important;
}
body.es-site.es-road .es-sol-ico {
    background: rgba(255, 237, 0, 0.12);
    color: var(--rd-lime);
    border-radius: 999px;
}
html.light body.es-site.es-road .es-sol-ico { color: #C47A00; }
body.es-site.es-road .es-sol-card em { color: var(--rd-lime); }

body.es-site.es-road .es-plan-card.is-featured {
    border-color: rgba(255, 237, 0, 0.42) !important;
}
body.es-site.es-road .es-plan-ribbon {
    background: var(--rd-lime);
    color: var(--rd-lime-ink);
    border: 0;
}

body.es-site.es-road .es-deal-chip {
    display: inline-flex;
    margin-top: 0.85rem;
    padding: 0.28rem 0.75rem;
    border-radius: 999px;
    background: var(--rd-lime);
    color: var(--rd-lime-ink);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

body.es-site.es-road .es-step-num {
    color: var(--rd-lime);
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}
html.light body.es-site.es-road .es-step-num { color: #C47A00; }

body.es-site.es-road .es-choice.is-active {
    background: rgba(255, 237, 0, 0.16) !important;
    border-color: var(--rd-lime) !important;
    color: var(--rd-ink) !important;
}
html.light body.es-site.es-road .es-choice.is-active {
    background: #FFF3C4 !important;
    border-color: #C47A00 !important;
    color: #5C3B00 !important;
    -webkit-text-fill-color: #5C3B00 !important;
}
html.light body.es-site.es-road .es-choice.is-active * {
    color: #5C3B00 !important;
    -webkit-text-fill-color: #5C3B00 !important;
}
html.light body.es-site.es-road button.es-cycle-btn.is-active,
html.light body.es-site.es-road button.es-cycle-btn.is-active * {
    background: #FFF3C4 !important;
    border-color: #C47A00 !important;
    color: #5C3B00 !important;
    -webkit-text-fill-color: #5C3B00 !important;
}
html.dark body.es-site.es-road button.es-cycle-btn.is-active {
    background: rgba(255, 237, 0, 0.18) !important;
    border-color: var(--rd-lime) !important;
}
body.es-site.es-road .es-price,
body.es-site.es-road .es-software-price {
    color: var(--rd-lime) !important;
}
html.light body.es-site.es-road .es-price,
html.light body.es-site.es-road .es-software-price {
    color: #A86500 !important;
}

.es-road-trust {
    display: grid;
    gap: 1rem;
}
@media (min-width: 768px) {
    .es-road-trust { grid-template-columns: repeat(4, 1fr); }
}
.es-road-trust article {
    padding: 1.4rem 1.15rem;
    border-radius: 22px;
    background: var(--rd-card);
    border: 1px solid var(--rd-line);
}
.es-road-trust h3 {
    font-size: 1rem;
    font-weight: 700;
}
.es-road-trust p {
    margin-top: 0.4rem;
    font-size: 0.85rem;
    color: var(--rd-muted);
}
.es-road-trust i {
    display: block;
    width: 10px;
    height: 10px;
    margin-bottom: 1rem;
    border-radius: 99px;
    background: var(--rd-lime);
}

.es-road-cta {
    margin: 1rem 0 3.5rem;
    padding: 2.4rem 1.6rem;
    border-radius: 28px;
    background: #111;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: center;
    justify-content: space-between;
}
html.light .es-road-cta { background: #111; }
.es-road-cta h2 { color: #fff; font-size: clamp(1.4rem, 3vw, 2rem); }
.es-road-cta p { color: rgba(255, 255, 255, 0.62); margin-top: 0.4rem; }
.es-road-cta .es-btn-primary { background: var(--rd-lime) !important; color: var(--rd-lime-ink) !important; }
.es-road-cta .es-btn-secondary { background: #2a2a2a !important; color: #fff !important; }

/* Footer */
body.es-site.es-road .es-foot {
    background: #111 !important;
    color: rgba(255, 255, 255, 0.62);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
body.es-site.es-road .es-foot a:hover { color: #fff; }
.es-foot-news {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0 0.4rem;
}
.es-foot-news h2 {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 700;
}
.es-foot-news p { margin-top: 0.35rem; max-width: 28rem; }

.es-foot-brand { min-width: 0; }
.es-foot-logo { display: inline-flex; text-decoration: none; }
.es-foot-tagline {
    margin-top: 1rem;
    max-width: 18rem;
    font-size: 0.9rem;
    line-height: 1.55;
}
.es-foot-contacts {
    display: grid;
    gap: 0.35rem;
    margin-top: 1rem;
    font-size: 0.9rem;
}
.es-foot-col h3 {
    margin: 0 0 0.9rem;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 750;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.es-foot-col ul {
    display: grid !important;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.es-foot-col a {
    display: inline-block;
    min-height: 1.4rem;
    color: rgba(255, 255, 255, 0.62);
}

body.es-site.es-road .es-logo--light { color: #fff; }
body.es-site.es-road .es-logo--dark { color: #111; }
body.es-site.es-road .es-logo-dot,
body.es-site.es-road .es-logo-accent { fill: #FFED00; }
body.es-site.es-road .es-logo__meta { color: #FFED00 !important; letter-spacing: 0.22em; }
html.light body.es-site.es-road .es-logo--dark { color: #111; }
html.light body.es-site.es-road .es-logo--dark .es-logo__meta { color: #C47A00 !important; }
html.light body.es-site.es-road .es-logo--dark .es-logo-accent,
html.light body.es-site.es-road .es-logo--dark .es-logo-dot { fill: #C47A00; }
body.es-site.es-road .es-logo--sm .es-logo__wordmark { width: 9.4rem; }
body.es-site.es-road .es-logo--md .es-logo__wordmark { width: 11.8rem; }
body.es-site.es-road .es-logo--lg .es-logo__wordmark { width: 14.8rem; }

.es-pay-rail {
    margin-top: 0.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #0b0b0b;
}
.es-pay-rail__inner {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-height: 46px;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
}
.es-pay-rail__brand {
    display: inline-flex;
    align-items: center;
    height: 22px;
    padding: 0 0.7rem;
    border-radius: 3px;
    background: #1E64FF;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}
.es-pay-rail__inner strong {
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}
.es-pay-rail__rule {
    flex: 1 1 auto;
    height: 1px;
    min-width: 2rem;
    background: linear-gradient(90deg, rgba(255,255,255,0.18), rgba(255,255,255,0.04));
}
.es-pay-rail__hint {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.45);
    white-space: nowrap;
}
.es-pay-rail__cards {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.es-pay-card {
    display: block;
    width: 42px;
    height: 28px;
    border-radius: 4px;
}
@media (max-width: 720px) {
    .es-pay-rail__hint { display: none; }
    .es-pay-rail__inner { gap: 0.55rem; }
}

/* Auth / catalog inheritance */
body.es-site.es-road .es-spotlight::after {
    background: radial-gradient(420px circle at var(--spot-x, 50%) var(--spot-y, 0%), rgba(255, 237, 0, 0.12), transparent 42%);
}

/* ERA AI */
body.es-site.es-road .es-fab-stack { display: none !important; }
.es-era {
    position: fixed;
    right: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    z-index: 56;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}
.es-era-fab {
    position: relative;
    width: 4.15rem;
    height: 4.15rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #111;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4), 0 0 0 3px rgba(255, 237, 0, 0.35);
    cursor: pointer;
}
.es-era-fab img {
    width: 4.15rem;
    height: 4.15rem;
    border-radius: 999px;
    object-fit: cover;
    display: block;
}
.es-era-fab-dot {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: #FFED00;
    box-shadow: 0 0 0 2px #111;
    animation: es-era-pulse 1.8s ease-in-out infinite;
}
.es-era-fab-name {
    position: absolute;
    right: calc(100% + 0.55rem);
    top: 50%;
    transform: translateY(-50%);
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}
.es-era-panel {
    position: absolute;
    right: 0;
    bottom: 5.1rem;
    width: min(24.5rem, calc(100vw - 1.5rem));
    height: min(34rem, calc(100dvh - 7.5rem));
    display: flex;
    flex-direction: column;
    border-radius: 22px;
    overflow: hidden;
    background: #161616;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.5);
}
.es-era-head {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.85rem 0.85rem 0.75rem;
    background: linear-gradient(180deg, #1d1d1d, #161616);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.es-era-avatar,
.es-era-mini {
    border-radius: 999px;
    object-fit: cover;
    box-shadow: 0 0 0 2px rgba(255, 237, 0, 0.35);
}
.es-era-who { min-width: 0; flex: 1; }
.es-era-who strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    letter-spacing: -0.03em;
}
.es-era-who span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.15rem;
    color: #9a9a9a;
    font-size: 0.72rem;
}
.es-era-who i {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #FFED00;
}
.es-era-x,
.es-era-wa-mini {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: #242424;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}
.es-era-wa-mini { color: #25d366; }
.es-era-thread {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 0.9rem 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    scrollbar-width: none;
}
.es-era-thread::-webkit-scrollbar { display: none; }
.es-era-row { display: flex; gap: 0.45rem; align-items: flex-end; max-width: 92%; }
.es-era-row.user { margin-left: auto; flex-direction: row-reverse; }
.es-era-bubble {
    padding: 0.7rem 0.85rem;
    border-radius: 16px 16px 16px 6px;
    background: #222;
    color: #f4f4f4;
    font-size: 0.86rem;
    line-height: 1.45;
}
.es-era-row.user .es-era-bubble {
    background: #FFED00;
    color: #1A1200;
    border-radius: 16px 16px 6px 16px;
    font-weight: 550;
}
.es-era-bubble p { margin: 0; }
.es-era-wa-btn {
    display: inline-flex;
    margin-top: 0.55rem;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: #25d366;
    color: #062810;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
}
.es-era-dots { display: flex; gap: 0.28rem; align-items: center; min-width: 3.2rem; }
.es-era-dots i {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #FFED00;
    animation: es-era-dot 1s infinite ease-in-out;
}
.es-era-dots i:nth-child(2) { animation-delay: 0.15s; }
.es-era-dots i:nth-child(3) { animation-delay: 0.3s; }
.es-era-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0 0.85rem 0.55rem;
}
.es-era-chips button {
    border: 0;
    border-radius: 999px;
    padding: 0.38rem 0.7rem;
    background: #242424;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
}
.es-era-chips button:hover { background: #FFED00; color: #1A1200; }
.es-era-form {
    display: flex;
    gap: 0.45rem;
    padding: 0.7rem 0.75rem 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: #121212;
}
.es-era-form input {
    flex: 1;
    min-width: 0;
    height: 42px;
    border: 0;
    border-radius: 999px;
    padding: 0 0.95rem;
    background: #222;
    color: #fff;
    outline: none;
}
.es-era-form button {
    height: 42px;
    border: 0;
    border-radius: 999px;
    padding: 0 1rem;
    background: #FFED00;
    color: #1A1200;
    font-weight: 750;
    font-size: 0.8rem;
    cursor: pointer;
}
.es-era-form button:disabled { opacity: 0.45; cursor: default; }
html.light .es-era-panel { background: #fff; border-color: rgba(17, 17, 17, 0.08); }
html.light .es-era-head { background: #f7f7f7; }
html.light .es-era-who strong { color: #111; }
html.light .es-era-bubble { background: #f0f0f0; color: #111; }
html.light .es-era-form { background: #fff; }
html.light .es-era-form input { background: #f0f0f0; color: #111; }
html.light .es-era-chips button { background: #eee; color: #111; }
@keyframes es-era-pulse {
    0%, 100% { box-shadow: 0 0 0 2px #111, 0 0 0 2px rgba(255, 237, 0, 0.2); }
    50% { box-shadow: 0 0 0 2px #111, 0 0 0 7px rgba(255, 237, 0, 0); }
}
@keyframes es-era-dot {
    0%, 80%, 100% { opacity: 0.25; transform: translateY(0); }
    40% { opacity: 1; transform: translateY(-3px); }
}

@media (prefers-reduced-motion: reduce) {
    .es-announce-track,
    .es-road-marquee-track,
    .es-partners-track,
    .es-era-fab-dot,
    .es-era-dots i { animation: none !important; }
    body.es-site.es-road .es-mega-link,
    body.es-site.es-road .es-mega-ico,
    body.es-site.es-road .es-mega-go,
    body.es-site.es-road .es-nav-caret { transition: none !important; transform: none !important; }
}
