/* ── PUZZVERSE DOWNLOAD PAGE ── */
/* Requires base.css */

.download-page {
    padding-top: 88px; /* nav height offset */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ── PLATFORM SECTIONS ── */
.platform-section {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    padding: 100px 72px;
    position: relative;
    overflow: hidden;
}

.android-section {
    background: var(--off-white);
}

.apple-section {
    background: var(--off-white2);
}

.platform-inner {
    position: relative;
    z-index: 2;
}

.apple-inner {
    order: 2;
}

/* ── HEADINGS ── */
.platform-hed {
    font-family: var(--serif);
    font-size: clamp(42px, 5vw, 80px);
    font-weight: 400;
    line-height: 1.06;
    color: var(--ink);
    letter-spacing: -1.2px;
    margin-bottom: 28px;
}

.platform-hed em {
    font-style: italic;
    color: var(--teal);
}

.platform-body {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--ink-soft);
    max-width: 420px;
    margin-bottom: 44px;
}

.platform-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* ── COMING SOON BADGE ── */
.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border: 1px solid var(--ink-faint);
    border-radius: 2px;
    background: var(--paper);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
    animation: pulse 2.4s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.75); }
}

/* ── DECORATIVE RINGS ── */
.platform-deco {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 360px;
    z-index: 1;
}

.deco-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(42, 175, 164, 0.14);
}

.android-deco .deco-ring:nth-child(1) { width: 280px; height: 280px; }
.android-deco .deco-ring--2          { width: 380px; height: 380px; border-color: rgba(42,175,164,0.07); }

.apple-deco .deco-ring:nth-child(1)  { width: 280px; height: 280px; }
.apple-deco .deco-ring--2            { width: 380px; height: 380px; border-color: rgba(42,175,164,0.07); }

.deco-icon {
    font-size: 80px;
    color: rgba(42, 175, 164, 0.10);
    position: relative;
    z-index: 2;
    user-select: none;
    line-height: 1;
}

/* ── DIVIDER ── */
.platform-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 72px;
    position: relative;
    background: var(--off-white);
    z-index: 10;
}

.platform-divider::before,
.platform-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--ink-faint);
}

.divider-label {
    font-family: var(--serif);
    font-size: 17px;
    font-style: italic;
    color: var(--ink-muted);
    padding: 0 28px;
}

/* ── LABEL LINE (override base for inline use) ── */
.platform-label {
    margin-bottom: 28px;
}

.platform-label .label-line {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.platform-label .label-line::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--teal);
    border-radius: 1px;
    flex-shrink: 0;
}

.platform-label .label-text {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--teal);
}

/* ── MOBILE ── */
@media (max-width: 768px) {
    .platform-section {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 72px 24px;
    }

    .platform-deco {
        height: 200px;
    }

    .android-deco .deco-ring:nth-child(1),
    .apple-deco .deco-ring:nth-child(1) { width: 160px; height: 160px; }

    .android-deco .deco-ring--2,
    .apple-deco .deco-ring--2           { width: 220px; height: 220px; }

    .deco-icon { font-size: 52px; }

    .apple-inner { order: unset; }

    .apple-deco { order: 1; }

    .platform-divider { padding: 0 24px; }

    .platform-hed { letter-spacing: -0.6px; }

    .platform-body { font-size: 16px; margin-bottom: 32px; }
}