/* HALOS explainer — scoped to this page */
.halos-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 1.25rem 3rem;
    box-sizing: border-box;
}
.halos-hero {
    text-align: center;
    padding: 2.5rem 1.5rem 2rem;
    margin-bottom: 1.75rem;
    border-radius: 1.25rem;
    background:
        radial-gradient(ellipse at top, rgba(255, 193, 7, 0.18), transparent 55%),
        radial-gradient(ellipse at bottom right, rgba(10, 214, 233, 0.12), transparent 50%),
        rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 193, 7, 0.25);
}
.halos-hero .halo-icon {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 12px rgba(255, 193, 7, 0.45));
}
.halos-hero h1 {
    margin: 0 0 0.5rem;
    font-size: clamp(2rem, 5vw, 2.75rem);
    color: var(--apald-gold, #ffc107);
    letter-spacing: 0.06em;
}
.halos-hero .tagline {
    font-size: 1.15rem;
    opacity: 0.92;
    max-width: 40rem;
    margin: 0 auto 1.25rem;
    line-height: 1.5;
}
.halos-balance {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1.2rem;
    border-radius: 2rem;
    background: rgba(255, 193, 7, 0.12);
    border: 1px solid rgba(255, 193, 7, 0.4);
    color: var(--apald-gold, #ffc107);
    font-weight: 600;
}
.halos-balance strong { font-size: 1.25rem; }

.halos-toc {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    justify-content: center;
    margin: 0 0 2rem;
    padding: 0.85rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
}
.halos-toc a {
    color: var(--apald-cyan, #0ad6e9);
    text-decoration: none;
    font-size: 0.92rem;
    padding: 0.25rem 0.55rem;
    border-radius: 0.35rem;
}
.halos-toc a:hover {
    background: rgba(10, 214, 233, 0.12);
    text-decoration: underline;
}

.halos-section {
    margin-bottom: 2rem;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.5rem 1.5rem 1.35rem;
}
.halos-section > h2 {
    margin: 0 0 0.75rem;
    color: var(--apald-cyan, #0ad6e9);
    font-size: 1.45rem;
}
.halos-section > .lead {
    margin: 0 0 1.15rem;
    line-height: 1.55;
    opacity: 0.92;
}
.halos-section h3 {
    margin: 1.35rem 0 0.5rem;
    font-size: 1.08rem;
    color: var(--apald-gold, #ffc107);
}
.halos-section h3:first-of-type { margin-top: 0.5rem; }

.halos-two-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 1rem;
}
.halos-panel {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    padding: 1.1rem 1.2rem;
}
.halos-panel h3 {
    margin: 0 0 0.6rem;
    font-size: 1.05rem;
    color: var(--apald-gold, #ffc107);
}
.halos-panel ul, .halos-section ul {
    margin: 0.4rem 0 0;
    padding-left: 1.25rem;
    line-height: 1.55;
    opacity: 0.92;
}
.halos-panel li, .halos-section li { margin-bottom: 0.4rem; }
.halos-panel p {
    margin: 0;
    line-height: 1.55;
    opacity: 0.92;
}

.halos-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}
.halos-steps li {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    padding: 1rem 1.1rem 1rem 3rem;
    position: relative;
}
.halos-steps li::before {
    position: absolute;
    left: 0.9rem;
    top: 1rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: rgba(10, 214, 233, 0.2);
    color: var(--apald-cyan, #0ad6e9);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.halos-steps {
    counter-reset: halos-step;
}
.halos-steps li::before {
    counter-increment: halos-step;
    content: counter(halos-step);
    /* keep your existing position/size/color rules on ::before */
}

.halos-steps li strong { display: block; margin-bottom: 0.3rem; color: #fff; }
.halos-steps li span { font-size: 0.95rem; opacity: 0.88; line-height: 1.5; }

.status-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
    margin: 0.75rem 0 0;
}
.status-table th,
.status-table td {
    text-align: left;
    padding: 0.55rem 0.65rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    vertical-align: top;
    line-height: 1.45;
}
.status-table th {
    color: #c9b3e8;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.2);
}
.status-table .yes { color: #28a745; font-weight: 600; }
.status-table .soon { color: #ffc107; font-weight: 600; }
.status-table .no { color: #aaa; }

.halos-faq details {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.65rem;
    margin-bottom: 0.65rem;
    background: rgba(0, 0, 0, 0.25);
    overflow: hidden;
}
.halos-faq summary {
    cursor: pointer;
    padding: 0.85rem 1.1rem;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}
.halos-faq summary::-webkit-details-marker { display: none; }
.halos-faq summary::after {
    content: '+';
    color: var(--apald-cyan, #0ad6e9);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.halos-faq details[open] summary::after { content: '\2212'; }
.halos-faq details[open] summary {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.halos-faq .faq-body {
    padding: 0.9rem 1.1rem 1.1rem;
    line-height: 1.55;
    opacity: 0.92;
}

.tip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(10, 214, 233, 0.25);
    color: var(--apald-cyan, #0ad6e9);
    cursor: help;
    position: relative;
    vertical-align: middle;
    margin-left: 0.25rem;
    border: none;
    padding: 0;
}
.tip[data-tip]::after {
    content: attr(data-tip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-width: 240px;
    padding: 0.45rem 0.65rem;
    border-radius: 0.4rem;
    background: rgba(20, 10, 40, 0.98);
    border: 1px solid rgba(10, 214, 233, 0.4);
    color: #eee;
    font-size: 0.78rem;
    font-weight: 400;
    line-height: 1.35;
    white-space: normal;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
    z-index: 5;
    text-align: left;
}
.tip:hover::after,
.tip:focus::after {
    opacity: 1;
}

.halos-cta {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(118, 44, 202, 0.35), rgba(10, 214, 233, 0.12));
    border: 1px solid rgba(10, 214, 233, 0.3);
}
.halos-cta h2 {
    margin: 0 0 0.5rem;
    color: #fff;
}
.halos-cta p {
    margin: 0 auto 1.25rem;
    opacity: 0.9;
    max-width: 34rem;
    line-height: 1.5;
}
.halos-cta .cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}
.halos-cta a.btn {
    display: inline-block;
    padding: 0.65rem 1.35rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.15s ease;
}
.halos-cta a.btn:hover { transform: translateY(-2px); }
.halos-cta a.btn-primary {
    background: var(--apald-cyan, #0ad6e9);
    color: #111;
}
.halos-cta a.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #eee;
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.halos-note {
    font-size: 0.9rem;
    opacity: 0.75;
    margin-top: 1rem;
    line-height: 1.5;
}
.halos-inline-link { color: var(--apald-cyan, #0ad6e9); }