:root {
    --ec-bg: #f4f8fc;
    --ec-bg-soft: #ebf3fb;
    --ec-bg-strong: #dbeaf9;
    --ec-surface: rgba(255, 255, 255, 0.92);
    --ec-surface-strong: #ffffff;
    --ec-surface-soft: rgba(245, 249, 253, 0.96);

    --ec-border: #d1e0f0;
    --ec-border-strong: #aac6e2;

    --ec-text: #173d63;
    --ec-text-soft: #556f89;
    --ec-text-faint: #7890a7;

    --ec-primary: #0d5e96;
    --ec-primary-2: #083b61;
    --ec-primary-soft: #dbeeff;

    --ec-secondary: #28a88a;
    --ec-secondary-soft: #e6f6f1;

    --ec-accent: #f3ad3d;
    --ec-accent-soft: #fff1d4;
    --ec-focus: #0d5e96;
    --ec-focus-ring: rgba(13, 94, 150, 0.18);

    --ec-success: #42a66f;
    --ec-warning: #d9921e;
    --ec-danger: #d96868;

    --ec-shadow-xs: 0 8px 20px rgba(25, 64, 103, 0.08);
    --ec-shadow-sm: 0 14px 30px rgba(25, 64, 103, 0.11);
    --ec-shadow-md: 0 20px 46px rgba(21, 58, 95, 0.14);
    --ec-shadow-lg: 0 30px 64px rgba(18, 53, 87, 0.18);

    --ec-radius-sm: 12px;
    --ec-radius-md: 20px;
    --ec-radius-lg: 28px;
    --ec-radius-xl: 36px;

    --ec-font: "Segoe UI", "Inter", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--ec-font);
    color: var(--ec-text);
    overflow-x: hidden;
    background:
        radial-gradient(circle at top left, rgba(77, 153, 219, 0.22) 0%, transparent 30%),
        radial-gradient(circle at top right, rgba(243, 173, 61, 0.16) 0%, transparent 24%),
        radial-gradient(circle at bottom right, rgba(40, 168, 138, 0.12) 0%, transparent 22%),
        linear-gradient(180deg, #f4f8fc 0%, #edf4fb 100%);
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select,
textarea {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

.app-body,
#app {
    min-height: 100vh;
}

.app-noscript {
    margin: 1rem;
    padding: 1rem 1.25rem;
    border: 1px solid var(--ec-border-strong);
    border-radius: var(--ec-radius-sm);
    background: var(--ec-accent-soft);
    color: var(--ec-text);
    box-shadow: var(--ec-shadow-xs);
}

.hidden {
    display: none !important;
}

/* =========================================================
   LANDING EMPRESARIAL
   ========================================================= */

.landing-screen {
    height: 100vh;
    height: 100svh;
    display: grid;
    grid-template-rows: 1fr auto;
    justify-items: center;
    align-items: stretch;
    padding: 0.78rem 1.1rem 0.28rem;
    position: relative;
    overflow: hidden;
}

.landing-shell {
    width: min(100%, 1200px);
    min-height: 0;
    height: 100%;
    display: grid;
    place-items: center;
    justify-self: center;
    align-self: center;
    position: relative;
}

.landing-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(12px);
    pointer-events: none;
    opacity: 0.72;
}

.landing-orb--left {
    width: 340px;
    height: 340px;
    left: -40px;
    top: 60px;
    background: radial-gradient(circle, rgba(133, 194, 246, 0.26) 0%, rgba(133, 194, 246, 0.04) 72%, transparent 100%);
    animation: floatSoft 8s ease-in-out infinite;
}

.landing-orb--right {
    width: 360px;
    height: 360px;
    right: -40px;
    bottom: 40px;
    background: radial-gradient(circle, rgba(15, 76, 129, 0.18) 0%, rgba(111, 189, 243, 0.10) 60%, transparent 100%);
    animation: floatSoft 10s ease-in-out infinite reverse;
}

.landing-card {
    width: min(100%, 900px);
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.9rem;
    justify-items: center;
    text-align: center;
    padding: 1.8rem 1.7rem 1.28rem;
    border: 1px solid rgba(205, 220, 241, 0.76);
    border-radius: 36px;
    background:
        radial-gradient(circle at top, rgba(243, 179, 71, 0.10) 0%, transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(247, 251, 255, 0.98) 72%, rgba(255, 246, 227, 0.9) 100%);
    backdrop-filter: blur(14px);
    box-shadow: 0 28px 70px rgba(56, 102, 150, 0.16);
}

.landing-brand {
    width: 100%;
    display: flex;
    justify-content: center;
}

.landing-logo {
    width: min(100%, 500px);
    object-fit: contain;
    filter: drop-shadow(0 18px 34px rgba(72, 137, 201, 0.16));
    animation: hoverBrand 5.5s ease-in-out infinite;
}

.landing-copy {
    max-width: 860px;
    display: grid;
    justify-items: center;
}

.landing-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.65rem 1.15rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(233, 244, 255, 0.98) 0%, rgba(255, 244, 214, 0.94) 100%);
    border: 1px solid rgba(210, 168, 76, 0.26);
    color: #7d5310;
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(72, 137, 201, 0.10);
}

.landing-title {
    margin: 1rem 0 0.75rem;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.96;
    letter-spacing: 0.04em;
    font-weight: 900;
    color: var(--ec-primary);
}

.landing-subtitle {
    max-width: none;
    margin: 0.48rem 0 0;
    font-size: clamp(0.96rem, 1.45vw, 1.22rem);
    color: #173d63;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
}

.landing-description {
    max-width: 760px;
    margin: 0.22rem auto 0;
    color: #5d7690;
    font-size: 0.95rem;
    line-height: 1.48;
    font-weight: 500;
}

.landing-actions {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 0.08rem;
}

.landing-btn-primary {
    appearance: none;
    border: none;
    cursor: pointer;
    min-width: 240px;
    padding: 1rem 1.5rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ec-primary) 0%, var(--ec-primary-2) 55%, var(--ec-secondary) 100%);
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 0.02em;
    box-shadow: 0 18px 34px rgba(45, 111, 174, 0.22);
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.landing-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 40px rgba(45, 111, 174, 0.26);
    filter: saturate(1.04);
}

.landing-btn-primary:active {
    transform: translateY(0);
}

.landing-btn-primary:focus-visible {
    outline: 3px solid rgba(111, 189, 243, 0.36);
    outline-offset: 4px;
}

.landing-mini {
    color: var(--ec-text-faint);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* =========================================================
   SHELL INTERNA
   ========================================================= */

.app-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.topbar-shell {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 1rem 1rem 0;
}

.topbar-shell__inner {
    width: min(100%, 1280px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(191, 214, 240, 0.72);
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(15, 76, 129, 0.94) 0%, rgba(45, 111, 174, 0.90) 55%, rgba(111, 189, 243, 0.88) 100%);
    box-shadow: var(--ec-shadow-md);
    backdrop-filter: blur(12px);
}

.brand-shell {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.brand-shell__logo {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    border: 2px solid rgba(255, 255, 255, 0.42);
    display: grid;
    place-items: center;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
}

.brand-shell__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-shell__copy {
    min-width: 0;
    color: #ffffff;
}

.brand-shell__eyebrow {
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    opacity: 0.84;
}

.brand-shell__title {
    margin: 0.18rem 0 0.1rem;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    font-weight: 900;
    line-height: 1.15;
}

.brand-shell__subtitle {
    margin: 0;
    font-size: 0.86rem;
    opacity: 0.88;
}

.topbar-shell__actions {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.user-chip {
    display: flex;
    flex-direction: column;
    gap: 0.08rem;
    padding: 0.72rem 0.92rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.user-chip__label {
    font-size: 0.74rem;
    opacity: 0.8;
}

.user-chip__name {
    font-size: 0.95rem;
    font-weight: 800;
}

.exit-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.75rem 1.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--ec-primary);
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.exit-pill:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.10);
}

.shell-main {
    width: min(100%, 1280px);
    margin: 0 auto;
    padding: 1.2rem 1rem 2rem;
    flex: 1;
}

.hero-panel {
    padding: 1.5rem;
    border: 1px solid rgba(191, 214, 240, 0.7);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(247, 251, 255, 0.98) 100%);
    box-shadow: var(--ec-shadow-sm);
}

.hero-panel__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.hero-panel__kicker {
    color: var(--ec-primary);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.hero-panel__title {
    margin: 0.45rem 0 0.4rem;
    color: var(--ec-primary);
    font-size: clamp(1.6rem, 2.5vw, 2.3rem);
    line-height: 1.1;
}

.hero-panel__subtitle {
    margin: 0;
    max-width: 760px;
    color: var(--ec-text-soft);
    line-height: 1.65;
}

.hero-chips {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 0.9rem;
    border-radius: 999px;
    background: var(--ec-secondary-soft);
    border: 1px solid var(--ec-border);
    color: var(--ec-primary);
    font-size: 0.84rem;
    font-weight: 800;
}

.search-shell {
    position: relative;
}

.search-shell__icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ec-primary);
    font-size: 1.15rem;
    pointer-events: none;
}

.search-shell__input {
    width: 100%;
    min-height: 58px;
    padding: 0.95rem 3.8rem 0.95rem 3rem;
    border-radius: 999px;
    border: 2px solid #cfe1f6;
    background: rgba(255, 255, 255, 0.98);
    color: var(--ec-text);
    box-shadow: var(--ec-shadow-xs);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-shell__input:focus {
    outline: none;
    border-color: #8fc6f0;
    box-shadow: 0 12px 24px rgba(111, 189, 243, 0.18);
}

.search-shell__spinner {
    position: absolute;
    right: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ec-primary-2);
    font-weight: 900;
}

.search-shell__results {
    position: absolute;
    inset: calc(100% + 0.65rem) 0 auto 0;
    z-index: 35;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(217, 231, 247, 0.96);
    box-shadow: var(--ec-shadow-md);
    overflow: hidden;
}

.search-empty-state {
    padding: 1rem 1.1rem;
}

.search-empty-title {
    color: var(--ec-primary);
    font-weight: 900;
    margin-bottom: 0.25rem;
}

.search-empty-copy {
    color: var(--ec-text-soft);
    line-height: 1.55;
}

.search-result-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1.1rem;
    border-bottom: 1px solid #eef4fb;
    transition: background 0.18s ease;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: #f8fbff;
}

.search-result-left {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}

.search-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--ec-primary-soft), var(--ec-secondary-soft));
    color: var(--ec-primary);
    font-weight: 900;
    box-shadow: var(--ec-shadow-xs);
    flex-shrink: 0;
}

.search-result-copy {
    min-width: 0;
}

.search-result-title {
    font-weight: 800;
    color: var(--ec-text);
}

.search-result-meta {
    margin-top: 0.15rem;
    color: var(--ec-text-soft);
    font-size: 0.88rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-badge {
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: var(--ec-secondary-soft);
    color: var(--ec-primary);
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(290px, 0.8fr);
    gap: 1.2rem;
    margin-top: 1.2rem;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.section-head__eyebrow {
    color: var(--ec-text-faint);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.section-head__title {
    margin: 0.25rem 0 0;
    color: var(--ec-primary);
    font-size: 1.35rem;
}

.route-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.78rem 0.95rem;
    border-radius: 999px;
    background: #f2f8ff;
    border: 1px solid var(--ec-border);
    color: var(--ec-primary);
}

.route-chip__label {
    font-size: 0.8rem;
    font-weight: 900;
}

.route-chip__value {
    font-size: 0.84rem;
    color: var(--ec-text-soft);
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.module-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    min-height: 220px;
    padding: 1.2rem;
    border: 1px solid var(--ec-border);
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 251, 255, 0.98) 100%);
    box-shadow: var(--ec-shadow-xs);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

.module-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ec-shadow-md);
    border-color: var(--ec-border-strong);
}

.module-card__icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    font-size: 1.7rem;
    box-shadow: var(--ec-shadow-xs);
}

.module-card__tag {
    align-self: flex-start;
    padding: 0.45rem 0.72rem;
    border-radius: 999px;
    font-size: 0.77rem;
    font-weight: 800;
    color: var(--ec-primary);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(191, 214, 240, 0.88);
}

.module-card__title {
    margin: 0;
    color: var(--ec-text);
    font-size: 1.1rem;
    font-weight: 900;
}

.module-card__subtitle {
    margin: 0;
    color: var(--ec-text-soft);
    line-height: 1.6;
    flex: 1;
}

.module-card__action {
    margin-top: auto;
    font-weight: 900;
    color: var(--ec-primary);
}

.tone-blue .module-card__icon {
    background: linear-gradient(135deg, #e5f2ff, #d5e9ff);
    color: #1a5a93;
}

.tone-cyan .module-card__icon {
    background: linear-gradient(135deg, #e7f9ff, #d6f2ff);
    color: #1279a8;
}

.tone-gold .module-card__icon {
    background: linear-gradient(135deg, #fff5e9, #ffe9c9);
    color: #b57d24;
}

.tone-lilac .module-card__icon {
    background: linear-gradient(135deg, #f3edff, #e7dbff);
    color: #6d57b3;
}

.tone-mint .module-card__icon {
    background: linear-gradient(135deg, #ebfff8, #d8f8ec);
    color: #2f8b6a;
}

.tone-peach .module-card__icon {
    background: linear-gradient(135deg, #fff3ea, #ffe3d1);
    color: #cb7c44;
}

.preview-card,
.info-card {
    border: 1px solid rgba(191, 214, 240, 0.74);
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 251, 255, 0.98) 100%);
    box-shadow: var(--ec-shadow-xs);
}

.preview-card {
    overflow: hidden;
}

.preview-card-inner {
    padding: 1.25rem;
}

.preview-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.72rem;
    border-radius: 999px;
    background: var(--ec-primary-soft);
    color: var(--ec-primary);
    font-size: 0.78rem;
    font-weight: 900;
}

.preview-title {
    margin: 0.95rem 0 0.5rem;
    color: var(--ec-primary);
    font-size: 1.2rem;
}

.preview-copy {
    margin: 0;
    color: var(--ec-text-soft);
    line-height: 1.65;
}

.preview-route {
    margin-top: 0.95rem;
    color: var(--ec-text-faint);
    font-size: 0.88rem;
}

.info-card {
    margin-top: 1rem;
    padding: 1.15rem;
}

.info-card__title {
    color: var(--ec-primary);
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
}

.info-card__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.72rem 0;
    border-bottom: 1px solid #eef4fb;
    color: var(--ec-text-soft);
}

.info-card__row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-card__row strong {
    color: var(--ec-text);
    text-align: right;
}

.footer-shell {
    width: min(100%, 1280px);
    justify-self: center;
    padding: 0 1rem 0.1rem;
}

.footer-shell__inner {
    width: min(100%, 1280px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.26rem;
    padding: 0.62rem 1.2rem 0.58rem;
    border-top: 1px solid rgba(191, 214, 240, 0.82);
    color: var(--ec-text-faint);
    font-size: 0.78rem;
    line-height: 1.28;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(246, 250, 255, 0.54) 100%);
    border-radius: 20px 20px 0 0;
    backdrop-filter: blur(8px);
}

.footer-shell__brand,
.footer-shell__copy,
.footer-shell__tech {
    width: 100%;
}

@media (min-width: 681px) {
    .landing-screen {
        overflow: hidden;
    }

    .landing-subtitle {
        white-space: nowrap;
    }
}

.footer-shell__brand strong,
.footer-shell__tech strong {
    color: var(--ec-primary);
}

/* =========================================================
   ANIMACIONES
   ========================================================= */

@keyframes floatSoft {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(-12px) translateX(6px);
    }
}

@keyframes hoverBrand {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-6px);
    }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1080px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .module-grid {
        grid-template-columns: 1fr;
    }

    .topbar-shell__inner {
        padding: 1rem;
    }
}

@media (max-width: 680px) {
    .landing-screen {
        height: auto;
        min-height: 100svh;
        padding: 0.42rem 0.68rem calc(0.18rem + env(safe-area-inset-bottom));
        overflow-x: hidden;
        overflow-y: visible;
    }

    .landing-shell {
        min-height: calc(100svh - 3.55rem);
    }

    .landing-card {
        gap: 0.72rem;
        padding: 0.78rem 0.82rem 0.68rem;
        border-radius: 28px;
        border-color: rgba(210, 168, 76, 0.28);
        background:
            radial-gradient(circle at top, rgba(243, 179, 71, 0.18) 0%, transparent 32%),
            radial-gradient(circle at bottom, rgba(220, 153, 49, 0.10) 0%, transparent 30%),
            linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 251, 255, 0.99) 62%, rgba(255, 244, 219, 0.96) 100%);
    }

    .landing-logo {
        width: min(100%, 312px);
    }

    .landing-kicker {
        min-height: 40px;
        padding: 0.52rem 0.82rem;
        background: linear-gradient(135deg, rgba(241, 215, 161, 0.98) 0%, rgba(255, 239, 201, 0.96) 100%);
        border-color: rgba(207, 149, 39, 0.34);
        box-shadow: 0 12px 24px rgba(214, 162, 61, 0.16);
        font-size: 0.72rem;
        letter-spacing: 0.1em;
    }

    .landing-subtitle {
        display: none;
    }

    .landing-description {
        margin-top: 0.32rem;
        font-size: 0.8rem;
        line-height: 1.38;
        color: #58708a;
    }

    .landing-orb--left {
        left: -90px;
        top: 32px;
        opacity: 0.92;
        background: radial-gradient(circle, rgba(244, 181, 63, 0.28) 0%, rgba(133, 194, 246, 0.10) 62%, transparent 100%);
    }

    .landing-orb--right {
        right: -90px;
        bottom: 56px;
        opacity: 0.9;
        background: radial-gradient(circle, rgba(233, 169, 57, 0.26) 0%, rgba(15, 76, 129, 0.14) 58%, transparent 100%);
    }

    .landing-btn-primary {
        width: 100%;
        min-width: 0;
        padding: 0.8rem 0.96rem;
    }

    .footer-shell {
        width: 100%;
        padding: 0 0.04rem calc(0.14rem + env(safe-area-inset-bottom));
    }

    .footer-shell__inner {
        gap: 0.2rem;
        justify-content: center;
        text-align: center;
        padding: 0.5rem 0.72rem;
        font-size: 0.7rem;
        line-height: 1.3;
    }

    .brand-shell {
        width: 100%;
    }

    .topbar-shell__actions {
        width: 100%;
        justify-content: space-between;
    }

    .user-chip {
        flex: 1;
        min-width: 0;
    }

    .hero-panel {
        padding: 1.1rem;
        border-radius: 24px;
    }

    .search-shell__input {
        min-height: 54px;
        padding-left: 2.8rem;
        padding-right: 3.2rem;
    }

    .preview-card,
    .info-card,
    .module-card {
        border-radius: 22px;
    }
}
