/* Archer "What is TOP" section */
.archer-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
    gap: 3rem;
    align-items: center;
}

.archer-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.archer-image {
    max-width: 100%;
    border-radius: 15%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 30px rgba(0, 240, 255, 0.45));
}

/* Text column */
.archer-copy .value-content p {
    margin-bottom: 1.1rem;
}

/* Intent / Power / Motion mapping */
.archer-mapping {
    margin-top: 1.75rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.archer-item {
    padding: 1.1rem 1.25rem;
    border-radius: 0.75rem;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.25);
}

.archer-item h3 {
    margin: 0 0 0.4rem 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #00f0ff;
    letter-spacing: -0.01em;
}

.archer-item p {
    margin: 0;
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

#what-is-top.fullpage-section {
    max-height: none !important;
    padding-top: 4rem;
    padding-bottom: 4rem; /* or whatever feels right */
}

/* Responsive tweaks */
@media (max-width: 900px) {
    .archer-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }

    .archer-visual {
        order: -1;
    }

    .archer-mapping {
        margin-top: 1.5rem;
    }

    .archer-item h3 {
        font-size: 1.05rem;
    }

    .archer-item p {
        font-size: 0.95rem;
    }
}
