/* ── Radius Page Styles ── */

/* Media placeholder grid */
.media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
}

.media-placeholder {
    background: var(--card);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: border-color 0.3s ease;
}

.media-placeholder:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.media-placeholder--wide {
    grid-column: 1 / -1;
    aspect-ratio: 21 / 9;
}

.media-placeholder__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.4;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* Requirements grid */
.req-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
}

.req-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.req-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px -12px rgba(0, 0, 0, 0.4);
}

.req-item h4 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
}

.req-item p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Obtain / Purchase section */
.radius-obtain {
    text-align: center;
}

.obtain-card {
    max-width: 440px;
    margin: 2rem auto 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 50px -16px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.obtain-card__price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.obtain-card__amount {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
}

.obtain-card__label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.obtain-card__perks {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: left;
}

.obtain-card__perks li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.obtain-card__perks li::before {
    content: "✓";
    color: var(--text);
    font-weight: 600;
    flex-shrink: 0;
}

.obtain-card__perks li:last-child {
    border-bottom: none;
}

.btn--large {
    padding: 1.1rem 2.6rem;
    font-size: 1.1rem;
}

.obtain-btn {
    width: 100%;
    margin-top: 0.5rem;
}

.obtain-card__note {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.7;
}

/* Footer legal links */
.radius-footer__links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.radius-footer__links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.radius-footer__links a:hover {
    color: var(--text);
}

/* Hero subtitle */
.hero__tagline--secondary {
    font-size: 1rem;
    margin-top: -1rem;
}

/* ── Legal page styles ── */
.legal-page {
    max-width: 760px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
}

.legal-page h1 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.legal-page .legal-updated {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 2.5rem;
}

.legal-page h2 {
    font-size: 1.35rem;
    margin: 2.5rem 0 0.75rem;
    letter-spacing: -0.01em;
}

.legal-page h3 {
    font-size: 1.1rem;
    margin: 1.8rem 0 0.5rem;
}

.legal-page p,
.legal-page li {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.legal-page ul,
.legal-page ol {
    padding-left: 1.3rem;
    margin: 0.75rem 0;
}

.legal-page li + li {
    margin-top: 0.4rem;
}

.legal-page a {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-page a:hover {
    color: var(--accent-strong);
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    transition: color 0.2s ease;
}

.legal-back:hover {
    color: var(--text);
}

/* Responsive */
@media (max-width: 640px) {
    .media-grid {
        grid-template-columns: 1fr;
    }

    .media-placeholder--wide {
        grid-column: auto;
    }

    .req-grid {
        grid-template-columns: 1fr;
    }

    .obtain-card {
        padding: 2rem 1.5rem;
    }

    .obtain-card__amount {
        font-size: 2.2rem;
    }
}
