/* ==========================================================================
   Sitemap page-specific styles
   Uses tokens from css/brand.css. Master-brand / utility page — own chrome
   stays Navy + Teal throughout (no platform accent, since this page
   indexes both Prime and Pulse content neutrally).
   ========================================================================== */

/* ---- Hero ---- */

/* ---- Hero visual: browser-chrome dashboard card, matching the
   about-hero / platform-hero illustration style ---- */

.sm-hero-visual {
    position: relative;
    width: 100%;
    max-width: 540px;
    aspect-ratio: 1672 / 941;
    margin: 0 auto;
}

.phv-glow {
    position: absolute;
    width: 55%;
    height: 55%;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    z-index: 0;
    background: var(--da-teal-600);
    top: -8%;
    left: -6%;
}

.phv-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(15, 46, 90, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 0.65rem 1rem;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    z-index: 2;
}

.phv-badge i {
    font-size: 1.05rem;
}

.phv-badge-top {
    top: -6%;
    right: 4%;
}

.phv-badge-top i {
    color: var(--da-teal-400);
}

.phv-badge-bottom {
    bottom: -6%;
    left: 6%;
}

.phv-badge-bottom i {
    color: #3FBF6F;
}

.phv-badge-line {
    width: 64px;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.35);
}

/* ---- Sitemap groups ---- */

.sm-groups {
    padding: 70px 0;
    background: var(--da-white);
}

.sm-group {
    height: 100%;
    background: var(--da-gray-100);
    border: 1px solid var(--da-gray-300);
    border-radius: 14px;
    padding: 1.75rem;
}

.sm-group-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--da-navy-900);
    margin-bottom: 1.25rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid var(--da-gray-300);
}

.sm-group-title i {
    color: var(--da-teal-600);
    font-size: 1.1rem;
}

.sm-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sm-link-list li {
    margin-bottom: 0.65rem;
}

.sm-link-list li:last-child {
    margin-bottom: 0;
}

.sm-link-list a {
    color: var(--da-gray-500);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.sm-link-list a:hover {
    color: var(--da-teal-600);
    text-decoration: underline;
}

/* ---- Closing CTA band ---- */

.sm-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.sm-cta-actions a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.96rem;
    transition: background 0.25s ease, transform 0.25s ease;
}

.sm-cta-actions a.primary {
    background: var(--da-teal-600);
    color: var(--da-white);
}

.sm-cta-actions a.primary:hover {
    background: var(--da-teal-400);
    transform: translateY(-2px);
}

.sm-cta-actions a.secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--da-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sm-cta-actions a.secondary:hover {
    background: rgba(255, 255, 255, 0.16);
}

/* ---- Responsive ---- */

@media (max-width: 991.98px) {

    .sm-hero-title {
        font-size: 2.1rem;
    }

    .sm-hero-visual {
        max-width: 380px;
        margin-top: 1rem;
    }
}

@media (max-width: 575.98px) {
    .sm-hero-title {
        font-size: 1.65rem;
    }

    .sm-cta-title {
        font-size: 1.4rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sm-cta-actions a {
        transition: none;
    }

    .sm-cta-actions a:hover {
        transform: none;
    }
}
