/* === Download Page Styles === */

/* Offset browser-native anchor scrolling for sticky header (~65px) + sticky tab bar (~52px).
   JS in download.js overwrites this dynamically with Math.floor(header+tabs). */
html:has(.dl-tabs-wrap) {
    scroll-padding-top: 115px;
}

/* ---- Download Hero ---- */
.dl-hero {
    background: var(--gradient-hero);
    padding: 68px 0 76px;
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center;
}
.dl-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 68%);
    pointer-events: none;
}
.dl-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.dl-hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 6px #4ade80, 0 0 12px rgba(74,222,128,0.5);
    animation: pulse-dot 2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 6px #4ade80, 0 0 12px rgba(74,222,128,0.5); }
    50% { opacity: 0.6; box-shadow: 0 0 3px #4ade80; }
}
.dl-hero h1 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.2px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.dl-hero-hl {
    background: linear-gradient(90deg, #f9a8d4 0%, #e879f9 40%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.dl-hero p {
    font-size: 17px;
    opacity: 0.85;
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}
.dl-platform-jumps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.dl-jump-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.13);
    border: 1px solid rgba(255,255,255,0.22);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-main);
    transition: background 0.2s, transform 0.2s;
    backdrop-filter: blur(6px);
    cursor: pointer;
}
.dl-jump-btn:hover {
    background: rgba(255,255,255,0.26);
    transform: translateY(-2px);
}
.dl-jump-btn svg {
    width: 14px;
    height: 14px;
    fill: #fff;
    flex-shrink: 0;
}

/* ---- Sticky Platform Tabs ---- */
.dl-tabs-wrap {
    position: sticky;
    top: 64px; /* JS in download.js overwrites this with measured header height */
    z-index: 90;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.dl-tabs {
    display: flex;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.dl-tabs::-webkit-scrollbar { display: none; }
.dl-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 16px 22px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-main);
    color: var(--color-text-muted);
    background: none;
    border: none;
    border-bottom: 2.5px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
    cursor: pointer;
    flex-shrink: 0;
}
.dl-tab:hover { color: var(--color-text-dark); }
.dl-tab.active {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}
.dl-tab svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
    flex-shrink: 0;
}

/* ---- Platform Section ---- */
.platform-section {
    padding: 68px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    scroll-margin-top: 115px;
}
.platform-section:last-of-type { border-bottom: none; }

.platform-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.platform-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
    margin-bottom: 8px;
}
.platform-eyebrow svg { width: 14px; height: 14px; fill: currentColor; }
.platform-title {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--color-text-dark);
    margin: 0 0 6px;
}
.platform-subtitle {
    font-size: 15px;
    color: var(--color-text-muted);
    margin: 0;
}

/* ---- Client Cards ---- */
.client-featured {
    background: linear-gradient(135deg, #f9f0ff 0%, #fdf4ff 55%, #fff 100%);
    border: 1.5px solid rgba(217,70,239,0.15);
    border-radius: 22px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: start;
}
.client-featured::before {
    content: '';
    position: absolute;
    top: -70px;
    right: -70px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217,70,239,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.client-featured-body { display: flex; flex-direction: column; gap: 14px; }
.client-featured-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    min-width: 200px;
    flex-shrink: 0;
}

.client-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.client-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 18px;
    padding: 24px;
    position: relative;
    transition: box-shadow 0.25s, transform 0.25s;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.client-card:hover {
    box-shadow: 0 10px 32px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}
.client-archived {
    background: #fafafa;
    border-color: rgba(0,0,0,0.06);
}
.client-archived:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.05); }

/* ---- Badges ---- */
.client-badges {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 4px 10px;
    border-radius: 50px;
    line-height: 1;
}
.badge svg { width: 10px; height: 10px; fill: currentColor; flex-shrink: 0; }
.badge-main { background: #d1fae5; color: #065f46; }
.badge-newbie { background: #dbeafe; color: #1e40af; }
.badge-archived { background: #fef3c7; color: #92400e; }

/* ---- Client Name & Desc ---- */
.client-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 0;
    letter-spacing: -0.3px;
}
.client-featured .client-name { font-size: 25px; }
.client-desc {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.68;
    margin: 0;
}

/* ---- Chips ---- */
.client-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.client-chip {
    font-size: 12px;
    font-weight: 500;
    background: rgba(147,51,234,0.07);
    color: var(--color-accent);
    padding: 4px 10px;
    border-radius: 50px;
}

/* ---- Sys Req ---- */
.sys-req {
    font-size: 12px;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1.5;
}
.sys-req svg { width: 12px; height: 12px; fill: currentColor; flex-shrink: 0; }

/* ---- Download Buttons ---- */
@keyframes btn-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(147,51,234,0.35), 0 0 0 0 rgba(147,51,234,0.3); }
    50%       { box-shadow: 0 4px 20px rgba(147,51,234,0.55), 0 0 0 9px rgba(147,51,234,0); }
}
.dl-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: var(--gradient-purple);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 50px;
    transition: transform 0.2s;
    white-space: nowrap;
    animation: btn-pulse 2.5s ease-in-out infinite;
}
.dl-btn-primary:hover {
    transform: translateY(-2px);
    animation: none;
    box-shadow: 0 8px 28px rgba(147,51,234,0.5);
}
.dl-btn-primary svg { width: 16px; height: 16px; fill: #fff; flex-shrink: 0; }

.dl-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: transparent;
    color: var(--color-text-dark);
    border: 1.5px solid rgba(0,0,0,0.12);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 50px;
    transition: all 0.2s;
    white-space: nowrap;
}
.dl-btn-secondary:hover {
    background: var(--color-text-dark);
    color: #fff;
    border-color: var(--color-text-dark);
}
.dl-btn-secondary svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

/* Architecture variant buttons */
.arch-btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 6px;
}
.arch-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: 10px;
    background: rgba(0,0,0,0.04);
    color: var(--color-text-muted);
    border: 1px solid rgba(0,0,0,0.07);
    transition: all 0.2s;
    white-space: nowrap;
}
.arch-btn:hover {
    background: rgba(147,51,234,0.07);
    color: var(--color-accent);
    border-color: rgba(147,51,234,0.2);
}
.arch-btn svg { width: 13px; height: 13px; fill: currentColor; flex-shrink: 0; }

/* App Store button */
.btn-appstore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000;
    color: #fff;
    padding: 12px 22px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}
.btn-appstore:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.btn-appstore svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }
.btn-appstore-label { display: flex; flex-direction: column; line-height: 1.2; }
.btn-appstore-label small { font-size: 9px; font-weight: 400; opacity: 0.65; text-transform: uppercase; letter-spacing: 0.5px; }
.btn-appstore-label strong { font-size: 16px; }

/* ---- GitHub Link ---- */
.gh-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.gh-link a { color: var(--color-text-muted); transition: color 0.2s; }
.gh-link a:hover { color: var(--color-accent); }
.gh-link svg { width: 13px; height: 13px; fill: currentColor; flex-shrink: 0; }
.gh-deleted, .gh-closed { color: #aaa; font-style: italic; }

/* ---- Archived Notice ---- */
.archived-notice {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 13px;
    color: #78350f;
    line-height: 1.55;
}
.archived-notice svg { width: 15px; height: 15px; fill: #d97706; flex-shrink: 0; margin-top: 1px; }

/* ---- iOS Notice ---- */
.ios-note {
    background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
    border: 1px solid rgba(59,130,246,0.15);
    border-radius: 16px;
    padding: 22px 26px;
    margin-bottom: 32px;
    font-size: 14px;
    color: #1e40af;
    line-height: 1.7;
}
.ios-note strong { font-weight: 700; }
.price-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    background: #fef3c7;
    color: #92400e;
    padding: 3px 8px;
    border-radius: 50px;
    margin-left: 6px;
    vertical-align: middle;
}

/* ---- Apple ID Guide ---- */
.apple-id-guide {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 1.5px solid rgba(16,185,129,0.2);
    border-radius: 22px;
    padding: 36px;
    margin-top: 40px;
}
.apple-id-guide-hd {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 32px;
}
.guide-icon-wrap {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.guide-icon-wrap svg { width: 28px; height: 28px; fill: #fff; }
.apple-id-guide-hd h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 0 0 4px;
}
.apple-id-guide-hd p {
    font-size: 14px;
    color: var(--color-text-muted);
    margin: 0;
}
.guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
}
.guide-step {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid rgba(16,185,129,0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.guide-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.guide-step h4 { font-size: 14px; font-weight: 700; color: var(--color-text-dark); margin: 0; }
.guide-step p { font-size: 13px; color: var(--color-text-muted); margin: 0; line-height: 1.6; }

/* ---- Linux Terminal ---- */
.linux-terminal-wrap {
    background: #0d1117;
    border-radius: 18px;
    overflow: hidden;
    margin: 28px 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.linux-terminal-hd {
    background: #161b22;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.lt-dot { width: 12px; height: 12px; border-radius: 50%; }
.lt-dot-r { background: #ff5f57; }
.lt-dot-y { background: #ffbd2e; }
.lt-dot-g { background: #28c940; }
.lt-filename {
    margin-left: 10px;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
}
.linux-terminal-body {
    padding: 24px 26px;
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 13.5px;
    line-height: 1.75;
    color: #e6edf3;
    overflow-x: auto;
}
.lt-cmt { color: #8b949e; }
.lt-ps  { color: #58a6ff; user-select: none; }
.lt-cmd { color: #ffa657; }
.lt-fl  { color: #a5d6ff; }
.lt-str { color: #79c0ff; }
.lt-ok  { color: #3fb950; }

/* ---- Core Downloads ---- */
.core-intro {
    background: linear-gradient(135deg, #f5f3ff 0%, #fdf4ff 100%);
    border: 1px solid rgba(147,51,234,0.14);
    border-radius: 18px;
    padding: 26px 30px;
    margin-bottom: 36px;
}
.core-intro h3 { font-size: 18px; font-weight: 700; color: var(--color-text-dark); margin: 0 0 8px; }
.core-intro p { font-size: 14px; color: var(--color-text-muted); margin: 0; line-height: 1.65; }

.core-platform-group { margin-bottom: 36px; }
.core-platform-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 14px;
}
.core-platform-title svg { width: 18px; height: 18px; fill: var(--color-accent); flex-shrink: 0; }
.core-files {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 10px;
}
.core-file-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #f9fafb;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 10px;
    padding: 12px 16px;
    transition: all 0.2s;
}
.core-file-btn:hover {
    background: rgba(147,51,234,0.05);
    border-color: rgba(147,51,234,0.2);
}
.core-file-name {
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 12.5px;
    color: var(--color-text-dark);
    word-break: break-all;
}
.core-file-dl {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-accent);
    white-space: nowrap;
    flex-shrink: 0;
}
.core-file-dl svg { width: 13px; height: 13px; fill: currentColor; }
.core-gh-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.07);
    font-size: 14px;
    color: var(--color-text-muted);
}
.core-gh-row svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.core-gh-row a { color: var(--color-accent); font-weight: 600; }
.core-gh-row a:hover { text-decoration: underline; }

/* ---- Quick Start ---- */
.quick-start {
    background: linear-gradient(135deg, #fdf4ff 0%, #eff6ff 100%);
    padding: 76px 0;
}
.qs-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: start;
}
.qs-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
    margin-bottom: 14px;
}
.qs-eyebrow svg { width: 12px; height: 12px; fill: currentColor; }
.qs-title {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.6px;
    line-height: 1.2;
    color: var(--color-text-dark);
    margin: 0 0 14px;
}
.qs-desc {
    font-size: 15px;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.75;
}
.qs-steps { display: flex; flex-direction: column; gap: 26px; }
.qs-step { display: flex; gap: 20px; align-items: flex-start; }
.qs-step-num {
    width: 46px;
    height: 46px;
    background: var(--gradient-purple);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}
.qs-step-body h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 0 0 6px;
    line-height: 1.3;
}
.qs-step-body p {
    font-size: 14px;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.72;
}

/* ---- FAQ ---- */
.dl-faq { padding: 76px 0; }
.dl-faq-hd { text-align: center; margin-bottom: 52px; }
.dl-faq-hd h2 {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 12px 0 10px;
}
.dl-faq-hd p {
    font-size: 15px;
    color: var(--color-text-muted);
    max-width: 500px;
    margin: 0 auto;
}
.faq-dl-list { max-width: 820px; margin: 0 auto; }
.faq-details { border-bottom: 1px solid rgba(0,0,0,0.07); }
.faq-summary {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    cursor: pointer;
    list-style: none;
    user-select: none;
}
.faq-summary::-webkit-details-marker { display: none; }
.fq-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-accent);
    background: rgba(147,51,234,0.08);
    padding: 4px 9px;
    border-radius: 50px;
    min-width: 36px;
    text-align: center;
    flex-shrink: 0;
}
.fq-text {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-dark);
    line-height: 1.45;
}
.fq-chevron {
    width: 20px;
    height: 20px;
    fill: var(--color-text-muted);
    transition: transform 0.3s;
    flex-shrink: 0;
}
.faq-details[open] .fq-chevron { transform: rotate(180deg); }
.faq-ans {
    padding: 0 0 22px 52px;
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.75;
}
.faq-ans strong { color: var(--color-text-dark); font-weight: 600; }
.faq-ans a { color: var(--color-accent); }
.faq-ans a:hover { text-decoration: underline; }

/* ---- CTA Banner ---- */
.dl-cta-banner {
    background: var(--gradient-hero);
    padding: 64px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.dl-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 120%, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}
.dl-cta-banner h2 { font-size: 34px; font-weight: 800; letter-spacing: -0.8px; margin: 0 0 14px; position: relative; z-index: 1; }
.dl-cta-banner p { font-size: 16px; opacity: 0.85; max-width: 500px; margin: 0 auto 32px; line-height: 1.7; position: relative; z-index: 1; }
.dl-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.dl-cta-gh {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.13);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 24px;
    border-radius: 50px;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: background 0.2s;
}
.dl-cta-gh:hover { background: rgba(255,255,255,0.22); color: #fff; }
.dl-cta-gh svg { fill: currentColor; }

/* ---- Mobile Responsive ---- */
@media (max-width: 900px) {
    .dl-hero h1 { font-size: 32px; }
    .dl-hero p { font-size: 15px; }
    .client-featured { grid-template-columns: 1fr; }
    .client-featured-actions { align-items: flex-start; flex-direction: row; flex-wrap: wrap; min-width: auto; }
    .qs-inner { grid-template-columns: 1fr; gap: 38px; }
    .qs-title { font-size: 26px; }
    .platform-title { font-size: 24px; }
    .apple-id-guide { padding: 24px; }
    .guide-steps { grid-template-columns: 1fr; }
    .dl-cta-banner h2 { font-size: 26px; }
}
@media (max-width: 600px) {
    .platform-section { padding: 48px 0; }
    .dl-hero { padding: 48px 0 56px; }
    .dl-hero h1 { font-size: 26px; letter-spacing: -0.5px; }
    .client-cards-grid { grid-template-columns: 1fr; }
    .core-files { grid-template-columns: 1fr; }
    .fq-text { font-size: 14px; }
    .fq-num { display: none; }
    .faq-ans { padding-left: 0; font-size: 14px; }
    .dl-tab { padding: 14px 14px; font-size: 13px; }
    .arch-btns { flex-direction: column; }
    .core-gh-row { flex-wrap: wrap; gap: 6px; }
    .core-gh-row a { word-break: break-all; }
}
