/* Portal Atlas: asistente inteligente de FYSCAL. Secciones propias + efectos. */

body.atlas-page header {
    background: transparent;
    border-bottom-color: transparent;
    transition: background 0.3s ease, border-color 0.3s ease;
}

body.atlas-page header.atlas-scrolled,
body.atlas-page header.active {
    background: var(--color-1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

@media (min-width: 1366px) {
    body.atlas-page header.active .wrapper nav .menu li a {
        color: var(--text-l) !important;
    }
}

body.landing-page .atlas-main {
    background: var(--white);
}

/* ============ HERO ============ */

.atlas-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 85% 10%, rgba(126, 104, 255, 0.24), transparent 32%),
        radial-gradient(circle at 12% 88%, rgba(113, 89, 255, 0.2), transparent 30%),
        var(--color-1);
}

.atlas-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, black 30%, transparent 75%);
    pointer-events: none;
    z-index: 0;
}

/* Velo oscuro detrás del texto para que se lea sobre las líneas animadas. */
.atlas-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 72% 62% at 50% 42%, rgba(11, 6, 30, 0.62), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.atlas-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.atlas-orb--one {
    width: 420px;
    height: 420px;
    top: -140px;
    right: -120px;
    background: rgba(126, 104, 255, 0.5);
    animation: atlas-orb-drift 14s ease-in-out infinite alternate;
}

.atlas-orb--two {
    width: 340px;
    height: 340px;
    bottom: -140px;
    left: -110px;
    background: rgba(80, 130, 255, 0.4);
    animation: atlas-orb-drift 18s ease-in-out infinite alternate-reverse;
}

@keyframes atlas-orb-drift {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }

    to {
        transform: translate3d(-46px, 38px, 0) scale(1.12);
    }
}

.atlas-hero > .wrapper {
    width: var(--container-width);
    max-width: 1180px;
    margin: 0 auto;
    padding: 8.5rem 0 4.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Canvas FloatingLines: fondo animado del hero, detrás del contenido. */
.atlas-hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.8;
}

.atlas-hero-canvas canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.atlas-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 1rem 0.45rem 0.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: var(--bold);
    letter-spacing: 0.06em;
    text-shadow: 0 1px 12px rgba(8, 4, 24, 0.7);
}

.atlas-badge img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    /* El logo es blanco: sobre el hero oscuro va sin filtro ni fondo. */
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.45));
}

.atlas-badge b {
    padding: 0.1rem 0.5rem;
    border-radius: 999px;
    background: var(--color-3);
    color: var(--color-1);
    font-size: 0.7rem;
}

.atlas-hero h1 {
    width: 100%;
    max-width: 880px;
    margin: 0 0 1rem;
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: var(--bold);
    line-height: 1.15;
    text-transform: uppercase;
    text-wrap: balance;
    text-shadow: 0 2px 30px rgba(8, 4, 24, 0.8), 0 0 70px rgba(8, 4, 24, 0.55);
}

.atlas-hero h1 em {
    font-style: normal;
    color: var(--color-5);
}

.atlas-hero .atlas-lead {
    width: 100%;
    max-width: 720px;
    margin: 0 0 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.65;
    text-shadow: 0 1px 22px rgba(8, 4, 24, 0.85), 0 0 50px rgba(8, 4, 24, 0.5);
}

.atlas-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
}

.atlas-hero-actions .btn {
    border: 1px solid var(--white);
}

.atlas-proof {
    width: 100%;
    max-width: 880px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
}

.atlas-proof-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    color: var(--white-d);
    font-size: 0.85rem;
    text-shadow: 0 1px 12px rgba(8, 4, 24, 0.7);
}

.atlas-proof-item i {
    color: var(--color-5);
    font-size: 1.1rem;
}

.atlas-scroll {
    margin-top: 2.5rem;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-shadow: 0 1px 12px rgba(8, 4, 24, 0.7);
}

.atlas-scroll i {
    font-size: 1.3rem;
    animation: atlas-scroll-bounce 2.2s ease-in-out infinite;
}

@keyframes atlas-scroll-bounce {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.6;
    }

    50% {
        transform: translateY(8px);
        opacity: 1;
    }
}

/* ============ DEMO INTERACTIVA ============ */

.atlas-demo {
    background: var(--landing-paper, #f7f5ef);
    border-top: 1px solid var(--landing-line, rgba(42, 24, 124, 0.14));
}

.atlas-demo > .wrapper {
    width: var(--container-width);
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.atlas-section-head {
    width: 100%;
    max-width: 760px;
    margin: 0 auto 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.atlas-section-head .subtitle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: var(--bold);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-2);
}

.atlas-section-head .subtitle::before,
.atlas-section-head .subtitle::after {
    content: "";
    width: 20px;
    height: 1px;
    background: var(--color-2);
    opacity: 0.5;
}

.atlas-section-head h2 {
    margin: 0;
    color: var(--landing-ink, #17132f);
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    line-height: 1.2;
    text-transform: uppercase;
    text-wrap: balance;
}

.atlas-section-head p {
    margin: 0;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.6;
}

.atlas-demo-panel {
    width: 100%;
    max-width: 1200px;
}

/* Réplica de la interfaz real de Atlas (app FYSCAL). */
.atlas-real {
    border: 1px solid var(--landing-line, rgba(42, 24, 124, 0.14));
    border-radius: calc(var(--radius) * 1.3);
    background: var(--white);
    box-shadow: 0 30px 70px rgba(42, 24, 124, 0.14);
    overflow: hidden;
    text-align: left;
}

.atlas-real-header {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.9rem 1.2rem;
    border-bottom: 1px solid rgba(42, 24, 124, 0.12);
    background: linear-gradient(135deg, rgba(42, 24, 124, 0.05), transparent);
}

.atlas-real-header-info {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.atlas-real-logo {
    width: auto;
    height: 34px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    flex-shrink: 0;
    /* Mismo efecto violeta del producto real (el logo es blanco puro). */
    filter: brightness(0) saturate(100%) invert(37.3%) sepia(89.53%) saturate(3371.65%) hue-rotate(236.03deg) brightness(48.92%) contrast(122.93%);
}

.atlas-real-header-info h2 {
    margin: 0 0 0.15rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--landing-ink, #17132f);
    font-size: 1rem;
    font-weight: var(--bold);
}

.atlas-real-header-info p {
    margin: 0;
    color: var(--text);
    font-size: 0.8rem;
}

.atlas-real-tier,
.atlas-real-version {
    display: inline-flex;
    align-items: center;
    padding: 0.12rem 0.45rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--semiradius);
    vertical-align: middle;
}

.atlas-real-tier {
    color: var(--text-d);
    background: rgba(53, 53, 53, 0.08);
    border: 1px solid rgba(53, 53, 53, 0.16);
}

.atlas-real-version {
    color: var(--color-1);
    background: rgba(71, 47, 177, 0.1);
    border: 1px solid rgba(71, 47, 177, 0.22);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
}

.atlas-real-header-actions {
    display: flex;
    align-items: center;
}

.atlas-real-new-chat-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    border: none;
    border-radius: var(--semiradius);
    background: var(--color-1);
    color: var(--white);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: var(--bold);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(43, 24, 124, 0.18);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.atlas-real-new-chat-btn:hover {
    background: var(--color-2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(43, 24, 124, 0.22);
}

.atlas-real-new-chat-btn i {
    font-size: 1.05rem;
}

.atlas-real-shell {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 640px;
}

.atlas-real-sidebar {
    display: none;
    flex-direction: column;
    min-height: 0;
    padding: 0.75rem;
    border-right: 1px solid rgba(42, 24, 124, 0.12);
    background: var(--white);
}

.atlas-real-sidebar-label {
    margin: 0 0 0.5rem 0.35rem;
    color: var(--text);
    font-size: 0.72rem;
    font-weight: var(--bold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.atlas-real-conversations {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
}

.atlas-real-conv-item {
    margin-bottom: 0.35rem;
}

.atlas-real-conv-btn {
    width: 100%;
    display: block;
    text-align: left;
    padding: 0.6rem 0.7rem;
    border: 1px solid transparent;
    border-radius: var(--radius-m);
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s, border-color 0.15s;
}

.atlas-real-conv-btn:hover {
    background: rgba(118, 92, 235, 0.06);
}

.atlas-real-conv-btn.active {
    background: rgba(118, 92, 235, 0.1);
    border-color: rgba(42, 24, 124, 0.16);
}

.atlas-real-conv-title {
    display: block;
    color: var(--landing-ink, #17132f);
    font-size: 0.85rem;
    font-weight: var(--bold);
}

.atlas-real-conv-preview {
    display: block;
    margin-top: 0.15rem;
    color: var(--text);
    font-size: 0.72rem;
    font-weight: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.atlas-real-sidebar-foot {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(42, 24, 124, 0.12);
}

.atlas-real-privacy summary {
    cursor: pointer;
    color: var(--color-1);
    font-size: 0.78rem;
    font-weight: var(--bold);
}

.atlas-real-privacy p {
    margin: 0.4rem 0 0;
    color: var(--text);
    font-size: 0.75rem;
    line-height: 1.55;
}

.atlas-real-chat-panel {
    display: flex;
    flex-direction: column;
    min-height: 0;
    min-width: 0;
}

.atlas-real-messages {
    flex: 1 1 auto;
    min-height: 460px;
    max-height: 620px;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 1.25rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background:
        radial-gradient(ellipse at top right, rgba(71, 47, 175, 0.05), transparent 55%),
        var(--white);
}

.atlas-real-messages::-webkit-scrollbar {
    width: 8px;
}

.atlas-real-messages::-webkit-scrollbar-thumb {
    background: rgba(42, 24, 124, 0.18);
    border-radius: 999px;
}

.asistente-msg-row {
    display: flex;
    gap: 0.65rem;
    align-items: flex-end;
    max-width: 92%;
    animation: atlas-real-msg-in 0.25s ease-out;
}

.asistente-msg-row.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.asistente-msg-row.assistant {
    align-self: flex-start;
}

.asistente-msg-avatar {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-m);
    font-size: 0.95rem;
    overflow: hidden;
}

.asistente-msg-row.user .asistente-msg-avatar {
    background: var(--color-1);
    color: var(--white);
}

.asistente-msg-row.assistant .asistente-msg-avatar {
    background: rgba(118, 92, 235, 0.1);
    border: 1px solid rgba(42, 24, 124, 0.14);
}

.asistente-msg-avatar img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(37.3%) sepia(89.53%) saturate(3371.65%) hue-rotate(236.03deg) brightness(48.92%) contrast(122.93%);
}

.asistente-msg-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    max-width: 100%;
}

.asistente-msg-row.user .asistente-msg-body {
    align-items: flex-end;
}

.asistente-msg-bubble {
    padding: 0.8rem 1rem;
    border-radius: var(--radius);
    font-size: 0.88rem;
    line-height: 1.55;
    white-space: pre-wrap;
    word-break: break-word;
}

.asistente-msg-bubble p {
    margin: 0;
}

.asistente-msg-row.user .asistente-msg-bubble {
    background: linear-gradient(135deg, var(--color-1), var(--color-2));
    color: var(--white);
    border-bottom-right-radius: 4px;
}

.asistente-msg-row.assistant .asistente-msg-bubble {
    background: #f4f2fa;
    border: 1px solid rgba(42, 24, 124, 0.12);
    border-bottom-left-radius: 4px;
    color: var(--text-d);
}

.asistente-msg-row.assistant .asistente-msg-bubble strong {
    color: var(--color-1);
}

@keyframes atlas-real-msg-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.asistente-stream-caret {
    display: inline-block;
    width: 2px;
    height: 0.95em;
    margin-left: 2px;
    vertical-align: text-bottom;
    background: var(--white);
    animation: atlas-real-blink 0.9s step-end infinite;
}

@keyframes atlas-real-blink {
    50% {
        opacity: 0;
    }
}

.asistente-typing-dots {
    display: inline-flex;
    gap: 4px;
    padding: 0.2rem 0;
}

.asistente-typing-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-2);
    animation: atlas-real-dot 1.2s infinite ease-in-out;
}

.asistente-typing-dots span:nth-child(2) {
    animation-delay: 0.15s;
}

.asistente-typing-dots span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes atlas-real-dot {
    0%,
    80%,
    100% {
        opacity: 0.35;
        transform: scale(0.85);
    }

    40% {
        opacity: 1;
        transform: scale(1);
    }
}

.atlas-real-suggestions {
    display: flex;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem 0;
    overflow-x: auto;
}

.atlas-real-suggestion {
    flex: 0 0 auto;
    cursor: pointer;
    padding: 0.5rem 0.85rem;
    border: 1px solid rgba(42, 24, 124, 0.16);
    border-radius: var(--semiradius);
    background: #f4f2fa;
    color: var(--color-1);
    font-family: inherit;
    font-size: 0.76rem;
    font-weight: var(--bold);
    white-space: nowrap;
    transition: background 0.2s, border-color 0.2s;
}

.atlas-real-suggestion:hover {
    background: rgba(118, 92, 235, 0.12);
    border-color: var(--color-2);
}

.atlas-real-composer {
    flex-shrink: 0;
    padding: 0.85rem 1.2rem 1rem;
    border-top: 1px solid rgba(42, 24, 124, 0.12);
    background: #faf9fd;
    border-radius: 0 0 calc(var(--radius) * 1.3) calc(var(--radius) * 1.3);
}

.atlas-real-composer-inner {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    padding: 0.5rem;
    background: var(--white);
    border: 1px solid rgba(42, 24, 124, 0.2);
    border-radius: var(--radius);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.atlas-real-composer-inner:focus-within {
    border-color: var(--color-1);
    box-shadow: 0 0 0 3px rgba(43, 24, 124, 0.1);
}

.atlas-real-composer textarea {
    flex: 1;
    resize: none;
    min-height: 24px;
    max-height: 120px;
    border: none;
    outline: none;
    background: transparent;
    padding: 0;
    font-family: inherit;
    font-size: 0.92rem;
    color: var(--text-d);
    line-height: 1.45;
    margin: auto 0;
}

.atlas-real-composer textarea::placeholder {
    color: var(--text);
}

.atlas-real-send-btn {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border: none;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--color-1), var(--color-2));
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(43, 24, 124, 0.22);
    transition: transform 0.15s, box-shadow 0.2s;
}

.atlas-real-send-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 4px 12px rgba(43, 24, 124, 0.28);
}

.atlas-real-composer-note {
    margin: 0.45rem 0 0 0.25rem;
    color: var(--text);
    font-size: 0.7rem;
}

.atlas-demo-note {
    margin: 1.2rem 0 0;
    max-width: 560px;
    font-size: 0.78rem;
    line-height: 1.6;
    color: var(--text);
}

/* ============ CAPACIDADES ============ */

.atlas-caps {
    background: var(--white);
}

.atlas-caps > .wrapper {
    width: var(--container-width);
    max-width: 1180px;
    margin: 0 auto;
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.atlas-caps-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.1rem;
}

.atlas-cap {
    position: relative;
    padding: 1.5rem 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    border: 1px solid var(--landing-line, rgba(42, 24, 124, 0.14));
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 10px 28px rgba(23, 19, 47, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

.atlas-cap::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-2), var(--color-3));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.atlas-cap:hover {
    transform: translateY(-5px);
    border-color: var(--color-2);
    box-shadow: 0 20px 46px rgba(42, 24, 124, 0.13);
}

.atlas-cap:hover::after {
    opacity: 1;
}

.atlas-cap-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-m);
    background: rgba(118, 92, 235, 0.1);
    color: var(--color-2);
    font-size: 1.35rem;
}

.atlas-cap h3 {
    margin: 0;
    color: var(--landing-ink, #17132f);
    font-size: 1.02rem;
    line-height: 1.35;
}

.atlas-cap p {
    margin: 0;
    color: var(--text);
    font-size: 0.88rem;
    line-height: 1.6;
}

.atlas-cap-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: var(--color-1);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: var(--bold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Tiers: dos columnas en desktop sobre los estilos del portal. */
body.landing-page .atlas-tiers .taurus-tiers {
    max-width: 980px;
}

/* ============ CTA ============ */

.atlas-cta {
    background: var(--white);
}

.atlas-cta > .wrapper {
    width: var(--container-width);
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 0 5rem;
}

.atlas-cta-panel {
    position: relative;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    text-align: center;
    border-radius: calc(var(--radius) * 1.4);
    background:
        radial-gradient(circle at 12% 20%, rgba(126, 104, 255, 0.28), transparent 34%),
        radial-gradient(circle at 88% 85%, rgba(80, 130, 255, 0.22), transparent 32%),
        var(--color-1);
    color: var(--white);
    overflow: hidden;
}

.atlas-cta-panel::before {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    right: -240px;
    top: -240px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.03), 0 0 0 120px rgba(255, 255, 255, 0.02);
    pointer-events: none;
}

.atlas-cta-pretitle {
    margin: 0;
    font-size: 0.75rem;
    font-weight: var(--bold);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-5);
}

.atlas-cta-panel h2 {
    margin: 0;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    line-height: 1.2;
    text-transform: uppercase;
    text-wrap: balance;
}

.atlas-cta-panel > p {
    margin: 0;
    max-width: 580px;
    font-size: 0.97rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
}

.atlas-cta-actions {
    margin-top: 0.7rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    position: relative;
    z-index: 1;
}

.atlas-cta-assurances {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.2rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
}

.atlas-cta-assurances span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.atlas-cta-assurances i {
    color: var(--color-5);
}

/* ============ RESPONSIVE ============ */

@media (min-width: 760px) {
    .atlas-proof {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .atlas-caps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 900px) {
    .atlas-real-shell {
        grid-template-columns: minmax(220px, 260px) 1fr;
    }

    .atlas-real-sidebar {
        display: flex;
    }
}

@media (min-width: 1100px) {
    .atlas-caps-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    body.landing-page .atlas-tiers .taurus-tiers {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (prefers-reduced-motion: reduce) {
    .atlas-orb,
    .atlas-scroll i,
    .asistente-typing-dots span,
    .asistente-stream-caret {
        animation: none !important;
    }
}
