:root {
    --cream: #FFF8F1;
    --peach: #FAE6D8;
    --orange: #D14E0A;
    --orange-deep: #9C3A08;
    --ink: #211C17;
    --ink-soft: #6E655C;
    --line: #EAE0D5;
    --green: #4C7A3D;
    --red: #B8432F;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}
.serif { font-family: 'Fraunces', serif; }
a { color: inherit; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }

/* NAV (full orange header) */
.site-nav { background: var(--orange); position: sticky; top: 0; z-index: 20; }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 24px; height: 72px; gap: 16px; overflow: visible; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-image { height: 44px; width: auto; display: block; }
.footer-brand .logo-image { height: 44px; }
.logo-mark { width: 32px; height: 32px; background: var(--ink); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #FFFFFF; font-weight: 700; font-size: 14px; }
.logo-text { font-size: 19px; font-weight: 700; color: #FFFFFF; letter-spacing: -0.3px; }
.logo-text span { color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: rgba(255,255,255,0.88); text-decoration: none; font-size: 14px; font-weight: 500; }
.nav-links-download { display: none; }
.nav-links a:hover { color: #FFFFFF; }
.nav-cta { background: var(--ink); color: #FFFFFF; font-weight: 600; font-size: 13.5px; padding: 10px 20px; border-radius: 100px; text-decoration: none; white-space: nowrap; flex-shrink: 0; }
.nav-toggle { display: none; background: none; border: none; color: #FFFFFF; cursor: pointer; padding: 4px; align-items: center; justify-content: center; }

/* Simple page header - About, Contact, DMCA, Privacy */
.page-header { max-width: 1200px; margin: 0 auto; padding: 48px 24px 20px; }
.page-title { font-size: clamp(30px, 4vw, 44px); font-weight: 600; margin-bottom: 16px; color: var(--ink); }
.page-lead { font-size: 17px; color: var(--ink-soft); max-width: 700px; line-height: 1.7; }
.updated-note { font-size: 13px; color: var(--ink-soft); margin-top: 14px; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-card {
    background: #FFFFFF;
    border: 2px solid #E7DCCC;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 12px 28px -16px rgba(33,28,23,0.16);
}
.contact-card-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: var(--peach);
    color: var(--orange-deep);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.contact-card-icon svg { width: 22px; height: 22px; }
.contact-card h3 { font-size: 16px; margin-bottom: 8px; color: var(--ink); }
.contact-card p { color: var(--ink-soft); font-size: 13.5px; margin-bottom: 12px; }
.contact-card a.contact-link { color: var(--orange-deep); font-weight: 700; font-size: 14px; text-decoration: none; }
.contact-card a.contact-link:hover { text-decoration: underline; }

/* Legal pages - numbered sections */
.legal-section { margin-bottom: 40px; }
.legal-section:last-child { margin-bottom: 0; }
.legal-section h2 { font-size: 22px; margin-bottom: 14px; color: var(--ink); display: flex; align-items: center; gap: 12px; }
.legal-num {
    flex-shrink: 0;
    width: 34px; height: 34px;
    border-radius: 10px;
    background: var(--orange);
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.legal-section p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.8; margin-bottom: 14px; max-width: 850px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul { max-width: 850px; margin-top: 8px; }
.legal-section ul li { color: var(--ink-soft); font-size: 15px; line-height: 1.7; padding-left: 22px; position: relative; margin-bottom: 8px; }
.legal-section ul li::before { content: '\2013'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.legal-highlight { background: #FFFFFF; border-left: 4px solid var(--orange); border-radius: 10px; padding: 18px 22px; margin-top: 16px; max-width: 850px; box-shadow: 0 8px 20px -14px rgba(33,28,23,0.1); }
.legal-highlight p { margin-bottom: 0; }

/* HERO */
.hero { max-width: 1200px; margin: 0 auto; padding: 8px 24px 48px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--orange-deep); margin-bottom: 18px; }
.eyebrow::before { content: ''; width: 18px; height: 1.5px; background: var(--orange); }
.hero-h1 { font-size: clamp(26px, 3.4vw, 42px); font-weight: 600; line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 20px; color: var(--ink); }
.hero-sub { font-size: 16.5px; color: var(--ink-soft); max-width: 500px; margin-bottom: 14px; }
.hero-sub-2 { margin-bottom: 30px; }
.hero-actions { display: flex; align-items: center; gap: 20px; margin-bottom: 36px; flex-wrap: wrap; }
.btn-primary { background: var(--orange); color: #FFFFFF; font-weight: 600; font-size: 15px; padding: 14px 26px; border-radius: 100px; text-decoration: none; display: inline-block; }
.btn-link { color: var(--ink); font-weight: 600; font-size: 14.5px; text-decoration: none; border-bottom: 1.5px solid var(--ink); padding-bottom: 2px; }
.stat-line { display: flex; gap: 34px; flex-wrap: wrap; }
.stat-num { font-size: 26px; font-weight: 600; color: var(--ink); display: block; }
.stat-label { font-size: 12.5px; color: var(--ink-soft); }

/* Phone mockup */
.phone-wrap { position: relative; display: flex; justify-content: center; }
.hero-image-wrap { display: flex; justify-content: center; align-items: center; }
.hero-image { width: auto; height: 520px; max-width: 100%; border-radius: 28px; box-shadow: 0 40px 70px -30px rgba(33,28,23,0.35); }
.hero-image.hero-image-landscape { width: 100%; height: auto; max-width: 560px; }
.phone { width: 260px; height: 520px; background: var(--ink); border-radius: 34px; padding: 12px; box-shadow: 0 40px 70px -30px rgba(33,28,23,0.35); }
.phone-screen { width: 100%; height: 100%; background: #17140F; border-radius: 24px; padding: 20px 16px; overflow: hidden; }
.screen-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.screen-title { color: #FBEAE0; font-size: 14px; font-weight: 700; }
.screen-dot { width: 22px; height: 22px; border-radius: 50%; background: var(--orange); }
.poster-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.poster-cell { aspect-ratio: 2/3; border-radius: 8px; background: linear-gradient(160deg, #322A22, #1E1912); }
.poster-cell.hl { background: linear-gradient(160deg, var(--orange), var(--orange-deep)); }
.screen-label { color: #9C9187; font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.6px; margin: 18px 0 10px; }
.float-badge { position: absolute; background: #FFFFFF; border: 1px solid var(--line); border-radius: 14px; padding: 11px 16px; font-size: 12.5px; font-weight: 600; color: var(--ink); box-shadow: 0 16px 30px -14px rgba(33,28,23,0.18); display: flex; align-items: center; gap: 8px; }
.float-badge.rating { top: 20px; left: -10px; }
.float-badge.safe { bottom: 40px; right: -10px; }
.badge-icon { width: 20px; height: 20px; border-radius: 50%; background: var(--peach); color: var(--orange-deep); display: flex; align-items: center; justify-content: center; font-size: 11px; }
.badge-icon.g { background: #E9F2E4; color: var(--green); }

/* Monitor mockup - PC page hero */
.monitor-wrap { position: relative; display: flex; justify-content: center; }
.monitor-frame { width: 100%; max-width: 420px; background: var(--ink); border-radius: 18px; padding: 16px 16px 0; box-shadow: 0 40px 70px -30px rgba(33,28,23,0.35); }
.monitor-screen { background: #17140F; border-radius: 10px; padding: 22px; height: 250px; overflow: hidden; }
.monitor-stand-neck { width: 10px; height: 26px; background: var(--ink); margin: 0 auto; }
.monitor-stand-base { width: 130px; height: 12px; background: var(--ink); border-radius: 6px; margin: 0 auto 0; }

/* TV mockup - Firestick page hero */
.tv-wrap { position: relative; display: flex; justify-content: center; flex-direction: column; align-items: center; }
.tv-frame { width: 100%; max-width: 440px; background: var(--ink); border-radius: 14px; padding: 16px; box-shadow: 0 40px 70px -30px rgba(33,28,23,0.35); }
.tv-screen { background: #17140F; border-radius: 8px; padding: 20px; height: 240px; overflow: hidden; }
.tv-stand-neck { width: 3px; height: 20px; background: var(--ink); margin: 0 auto; }
.tv-stand-base { width: 100px; height: 8px; background: var(--ink); border-radius: 4px; margin: 0 auto; }
.remote-chip { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; background: #FFFFFF; border: 1px solid var(--line); border-radius: 100px; padding: 9px 18px; font-size: 12.5px; font-weight: 600; color: var(--ink); box-shadow: 0 10px 22px -14px rgba(33,28,23,0.2); }
.remote-chip svg { width: 15px; height: 15px; color: var(--orange); }

/* Method panels - iOS two-method install layout */
.install-method { margin-bottom: 48px; }
.install-method:last-child { margin-bottom: 0; }
.method-heading { font-size: 24px; margin: 10px 0 8px; color: var(--ink); }
.method-desc { color: var(--ink-soft); font-size: 15px; margin-bottom: 26px; }
.method-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.method-panel { background: #FFFFFF; border: 2px solid #E7DCCC; border-radius: 18px; padding: 28px; box-shadow: 0 12px 28px -16px rgba(33,28,23,0.16); }
.method-tag { display: inline-block; background: var(--peach); color: var(--orange-deep); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 100px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.4px; }
.method-panel h3 { font-size: 19px; margin-bottom: 6px; color: var(--ink); }
.method-panel > p { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 18px; }
.method-steps { display: flex; flex-direction: column; gap: 14px; }
.method-step { display: flex; gap: 12px; align-items: flex-start; }
.method-step-num { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--orange); color: #FFFFFF; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.method-step p { font-size: 13.5px; color: var(--ink-soft); margin: 0; }

/* SECTIONS */
.section { max-width: 1200px; margin: 0 auto; padding: 42px 24px; }
.section.alt {
    position: relative;
    z-index: 0;
}
.section.alt::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: var(--peach);
    z-index: -1;
}
.section-title { font-size: 28px; font-weight: 600; margin-bottom: 22px; color: var(--ink); }
.heading-band {
    display: inline-block;
    width: fit-content;
    max-width: 80%;
    background: var(--orange);
    border-radius: 12px;
    padding: 12px 26px;
    margin: 0 0 26px 0;
    box-sizing: border-box;
}
.heading-band .section-title { color: #FFFFFF; margin-bottom: 0; font-size: 22px; }
.section-lead { color: var(--ink-soft); max-width: 720px; margin-bottom: 32px; }
.flow-text { font-size: 16.5px; color: var(--ink-soft); max-width: 900px; line-height: 1.8; }
.why-box { background: #FFFFFF; border-left: 5px solid var(--orange); border-radius: 14px; padding: 30px 34px; box-shadow: 0 10px 28px -16px rgba(33,28,23,0.15); font-size: 16.5px; color: var(--ink-soft); line-height: 1.8; max-width: 900px; }
.note { margin-top: 20px; color: var(--ink-soft); font-size: 14.5px; }
.note strong { color: var(--ink); }

/* Icon badge base */
.icon-badge { width: 22px; height: 22px; }
.icon-badge svg { width: 100%; height: 100%; }

/* App Info - single unified table, bold orange border */
.table-card {
    border: 3px solid var(--orange);
    border-radius: 18px;
    overflow: hidden;
    background: #FFFFFF;
    max-width: 760px;
    box-shadow: 0 16px 34px -18px rgba(33,28,23,0.18);
}
.table-card table { width: 100%; border-collapse: collapse; }
.table-card tr:not(:last-child) td { border-bottom: 1.5px solid rgba(209,78,10,0.35); }
.table-card tr:nth-child(even) { background: var(--cream); }
.table-card tr:hover td { background: var(--peach); }
.table-card td { padding: 16px 26px; font-size: 14.5px; transition: background 0.15s ease; }
.table-card td:first-child {
    color: var(--ink-soft);
    font-weight: 600;
    width: 42%;
    border-right: 2px solid var(--orange);
}
.table-card td:last-child { font-weight: 700; color: var(--ink); }

/* App Info - icon card grid */
.info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.info-card {
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 20px -14px rgba(33,28,23,0.12);
}
.info-card-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--peach);
    color: var(--orange-deep);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 12px;
}
.info-card-icon svg { width: 19px; height: 19px; }
.info-card-label { font-size: 12px; color: var(--ink-soft); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.4px; }
.info-card-value { font-size: 15px; font-weight: 700; color: var(--ink); }

/* Requirement spec cards - PC page system requirements */
.req-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.req-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #FFFFFF;
    border: 2px solid #E7DCCC;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 10px 24px -16px rgba(33,28,23,0.14);
}
.req-card > div { min-width: 0; }
.req-card-value { overflow-wrap: break-word; }
.req-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--peach);
    color: var(--orange-deep);
    display: flex; align-items: center; justify-content: center;
}
.req-icon svg { width: 21px; height: 21px; }
.req-card-label { font-size: 13px; color: var(--ink); font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 5px; }
.req-card-value { font-size: 14px; font-weight: 400; color: var(--ink-soft); line-height: 1.4; }

/* Alternative install method - separate cards with bullet points */
.emulator-grid { display: flex; flex-direction: column; gap: 20px; max-width: 900px; }
.emulator-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: #FFFFFF;
    border: 2px solid #E7DCCC;
    border-radius: 20px;
    padding: 30px 32px;
    box-shadow: 0 14px 32px -18px rgba(33,28,23,0.16);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.emulator-card:hover { transform: translateY(-3px); box-shadow: 0 20px 38px -18px rgba(33,28,23,0.22); border-color: var(--orange); }
.emulator-icon {
    flex-shrink: 0;
    width: 60px; height: 60px;
    border-radius: 16px;
    background: var(--peach);
    color: var(--orange-deep);
    display: flex; align-items: center; justify-content: center;
}
.emulator-icon svg { width: 28px; height: 28px; }
.emulator-card h3 { font-size: 18px; margin-bottom: 14px; color: var(--ink); }
.emulator-points { display: flex; flex-direction: column; gap: 10px; }
.emulator-points li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-soft); line-height: 1.5; }
.emulator-points .dot-icon { flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%; background: #E9F2E4; color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 10px; margin-top: 2px; }

/* Feature grid - colored icon cards */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
    background: #FFFFFF;
    border: 2px solid #E7DCCC;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 12px 28px -16px rgba(33,28,23,0.16);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 22px 38px -16px rgba(33,28,23,0.26); border-color: var(--orange); }
.feature-icon { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 16.5px; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.feature-card p { color: var(--ink-soft); font-size: 14px; }

/* Devices - distinct icon-top card, bigger */
.device-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.device-card {
    background: #FFFFFF;
    border: 2px solid #E7DCCC;
    border-radius: 20px;
    padding: 36px 26px;
    text-align: center;
    box-shadow: 0 12px 30px -16px rgba(33,28,23,0.16);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.device-card:hover { transform: translateY(-4px); box-shadow: 0 20px 36px -16px rgba(33,28,23,0.22); border-color: var(--orange); }
.device-icon { width: 76px; height: 76px; border-radius: 20px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.device-icon svg { width: 36px; height: 36px; }
.device-card h3 { font-size: 16px; margin-bottom: 10px; color: var(--ink); }
.device-card p { color: var(--ink-soft); font-size: 13.5px; }

/* Media players - card grid design, bigger */
.player-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 960px; }
.player-card {
    display: flex;
    align-items: center;
    gap: 22px;
    background: #FFFFFF;
    border: 2px solid #E7DCCC;
    border-radius: 20px;
    padding: 28px 30px;
    box-shadow: 0 14px 32px -18px rgba(33,28,23,0.18);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.player-card:hover { transform: translateY(-4px); box-shadow: 0 20px 38px -18px rgba(33,28,23,0.24); border-color: var(--orange); }
.player-icon { flex-shrink: 0; width: 64px; height: 64px; border-radius: 18px; display: flex; align-items: center; justify-content: center; }
.player-card > div { min-width: 0; }
.player-card h3, .player-card p { overflow-wrap: break-word; word-break: break-word; }
.player-icon svg { width: 30px; height: 30px; }
.player-card h3 { font-size: 17px; margin-bottom: 6px; color: var(--ink); }
.player-card p { font-size: 13.5px; color: var(--ink-soft); margin: 0; }

/* Install steps */
.steps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px 22px; }
.step-card {
    position: relative;
    background: #FFFFFF;
    border: 1.5px solid var(--line);
    border-radius: 18px;
    padding: 28px 24px 22px;
    box-shadow: 0 12px 28px -16px rgba(33,28,23,0.16);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.step-card:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -16px rgba(33,28,23,0.22); }
.step-badge {
    position: absolute;
    top: -18px; left: 24px;
    width: 38px; height: 38px;
    background: linear-gradient(160deg, var(--orange), var(--orange-deep));
    color: #FFFFFF;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 700;
    box-shadow: 0 8px 16px -4px rgba(209,78,10,0.55);
}
.step-card h3 { font-size: 16px; margin-bottom: 8px; margin-top: 8px; color: var(--ink); }
.step-card p { color: var(--ink-soft); font-size: 13.5px; }
.shot-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 34px; }
.shot-card { background: var(--peach); border: 2px dashed var(--orange); border-radius: 18px; aspect-ratio: 3 / 5; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
.shot-icon { width: 40px; height: 40px; border-radius: 50%; background: #FFFFFF; color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 17px; }
.shot-label { font-weight: 700; color: var(--orange-deep); font-size: 13px; text-align: center; padding: 0 8px; }

.shot-card.shot-image {
    aspect-ratio: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.shot-img-frame {
    flex: 1;
    aspect-ratio: 9 / 19.5;
    border: 2.5px solid var(--ink);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 28px -16px rgba(33,28,23,0.2);
}
.shot-card.shot-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.shot-card.shot-image .shot-label {
    background: transparent;
    color: var(--ink);
    padding: 0;
    font-weight: 600;
    font-size: 12.5px;
    text-align: center;
}

/* Is HDO Box Safe - dashboard stat style, distinct design */
.safe-box {
    background: #FFFFFF;
    border: 2px solid #E7DCCC;
    border-radius: 24px;
    box-shadow: 0 16px 36px -18px rgba(33,28,23,0.18);
    padding: 38px 40px;
    max-width: 960px;
}
.safe-top {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 26px;
    margin-bottom: 26px;
    border-bottom: 2px dashed var(--line);
}
.safe-icon-circle {
    flex-shrink: 0;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: #E9F2E4;
    color: var(--green);
    display: flex; align-items: center; justify-content: center;
}
.safe-icon-circle svg { width: 28px; height: 28px; }
.safe-top h3 { font-size: 20px; font-weight: 700; color: var(--ink); }
.safe-top span { display: block; font-size: 13px; color: var(--ink-soft); margin-top: 3px; }
.safe-grid { display: grid; grid-template-columns: 1fr 200px; gap: 34px; }
.safe-body p { color: var(--ink-soft); font-size: 15px; line-height: 1.8; margin-bottom: 14px; }
.safe-body p:last-of-type { margin-bottom: 0; }
.safe-stats { display: flex; flex-direction: column; gap: 12px; }
.safe-stat-card { background: var(--cream); border: 1px solid var(--line); border-radius: 14px; padding: 16px; text-align: center; }
.safe-stat-num { font-size: 22px; font-weight: 700; color: var(--green); display: block; }
.safe-stat-label { font-size: 11px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.4px; }
.safe-checklist { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.safe-check-item { display: flex; align-items: center; gap: 8px; background: var(--cream); border: 1px solid var(--line); border-radius: 100px; padding: 8px 16px; font-size: 13px; font-weight: 600; color: var(--ink); }
.safe-check-item .dot-icon { width: 16px; height: 16px; border-radius: 50%; background: #E9F2E4; color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 10px; }

/* Troubleshooting - expandable ticket grid */
.trouble-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.trouble-ticket {
    position: relative;
    background: #FFFFFF;
    border: 1.5px solid var(--line);
    border-left: 4px solid var(--orange);
    border-radius: 16px;
    padding: 22px 24px;
    box-shadow: 0 12px 28px -16px rgba(33,28,23,0.16);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.trouble-ticket:hover { transform: translateY(-3px); box-shadow: 0 18px 32px -16px rgba(33,28,23,0.22); }
.trouble-top { display: flex; align-items: center; gap: 14px; }
.trouble-icon { flex-shrink: 0; width: 42px; height: 42px; border-radius: 12px; background: #FCEAEA; color: var(--red); display: flex; align-items: center; justify-content: center; }
.trouble-icon svg { width: 20px; height: 20px; }
.trouble-ticket h3 { font-size: 15.5px; color: var(--ink); min-width: 0; overflow-wrap: break-word; }
.trouble-ticket p { color: var(--ink-soft); font-size: 13.5px; margin-top: 12px; padding-left: 56px; }

/* Pros and cons */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pc-col { background: #FFFFFF; border-radius: 16px; padding: 28px; }
.pc-pros { border: 2px solid #C7DFB8; }
.pc-cons { border: 2px solid #E8C3BA; }
.pc-col h3 { font-size: 18px; margin-bottom: 18px; }
.pc-col li { display: flex; align-items: flex-start; gap: 12px; padding: 9px 0; font-size: 14.5px; color: var(--ink-soft); }
.check, .cross { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; margin-top: 1px; }
.check { background: var(--green); color: #FFFFFF; }
.cross { background: var(--red); color: #FFFFFF; }

/* Alternatives table */
.table-wrap { overflow-x: auto; }
.alt-table { width: 100%; border-collapse: collapse; background: #FFFFFF; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: 0 14px 32px -18px rgba(33,28,23,0.16); min-width: 600px; }
.alt-table th, .alt-table td { padding: 16px 20px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--line); }
.alt-table th { background: var(--ink); color: #FFFFFF; font-weight: 600; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.4px; }
.alt-table tr.highlight td { background: var(--peach); font-weight: 700; }
.alt-table tr.highlight td:first-child { color: var(--orange-deep); }
.alt-table tr:hover:not(.highlight) td { background: var(--cream); }
.alt-table tr:last-child td { border-bottom: none; }
.pill-yes, .pill-no { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; font-size: 11px; font-weight: 700; }
.pill-yes { background: var(--green); color: #FFFFFF; }
.pill-no { background: var(--red); color: #FFFFFF; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 820px; }
.faq-item {
    background: #FFFFFF;
    border: 2px solid #E7DCCC;
    border-radius: 16px;
    padding: 20px 24px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.faq-item summary { display: flex; align-items: center; gap: 14px; font-weight: 600; font-size: 15px; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q-icon { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--peach); color: var(--orange-deep); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; }
.faq-summary-text { flex: 1; }
.faq-toggle { flex-shrink: 0; color: var(--orange); font-weight: 700; font-size: 18px; }
.faq-item[open] {
    border-color: var(--orange);
    background: var(--cream);
    box-shadow: 0 14px 30px -18px rgba(209,78,10,0.3);
}
.faq-item[open] .faq-toggle::before { content: '\2212'; }
.faq-item:not([open]) .faq-toggle::before { content: '+'; }
.faq-item p { margin-top: 14px; margin-left: 44px; color: var(--ink-soft); font-size: 14.5px; padding-top: 14px; border-top: 1px solid var(--line); }

/* Conclusion - compact banner-style box, no CTA button */
.cta-band { padding: 20px 24px 48px; }
.cta-box {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    text-align: left;
    background: #FFFFFF;
    border: 1.5px solid var(--line);
    border-left: 4px solid var(--orange);
    border-radius: 16px;
    padding: 30px 34px;
    box-shadow: 0 12px 28px -16px rgba(33,28,23,0.16);
}
.cta-box.cta-box-side { margin: 0; }
.cta-icon {
    flex-shrink: 0;
    width: 48px; height: 48px;
    border-radius: 14px;
    background: var(--orange);
    color: #FFFFFF;
    display: flex; align-items: center; justify-content: center;
}
.cta-icon svg { width: 24px; height: 24px; }
.cta-box .section-title { color: var(--ink); font-size: 22px; margin-bottom: 10px; }
.cta-box .section-lead { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 0; }

/* FOOTER */
.site-footer { background: #17130F; color: rgba(255,255,255,0.72); padding: 56px 24px 0; border-top: 4px solid var(--orange); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; }
.footer-brand { max-width: 320px; }
.footer-brand .logo-text { color: #FFFFFF; }
.footer-brand p { margin-top: 14px; font-size: 14px; }
.footer-links { display: flex; gap: 60px; }
.footer-links h4 { color: var(--orange); font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; }
.footer-links a { display: block; color: rgba(255,255,255,0.65); text-decoration: none; font-size: 14px; margin-bottom: 10px; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; text-align: center; font-size: 13px; }
.footer-bottom p { max-width: 1200px; margin: 0 auto; }

/* ============ RESPONSIVE (mobile-first fixes) ============ */
@media (max-width: 1024px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .device-grid { grid-template-columns: repeat(2, 1fr); }
    .info-grid { grid-template-columns: repeat(2, 1fr); }
    .req-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .player-list { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .nav-inner { height: 60px; padding: 0 16px; }
    .logo-image { height: 44px; }
    .nav-cta { padding: 8px 16px; font-size: 12.5px; }
    .safe-grid { grid-template-columns: 1fr; }
    .safe-stats { flex-direction: row; }
    .method-grid { grid-template-columns: 1fr; }
    .emulator-card { flex-direction: column; }
    .contact-grid { grid-template-columns: 1fr; }
    .req-grid { grid-template-columns: 1fr; }
    .monitor-frame, .tv-frame { max-width: 320px; }
    .safe-stat-card { flex: 1; }
    .cta-box { flex-direction: column; text-align: left; }
    .heading-band { max-width: 100%; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--orange-deep);
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 24px;
        gap: 4px;
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 10px 0; width: 100%; }
    .nav-toggle { display: flex; }
    .nav-cta { display: none; }
    .nav-links-download { display: block !important; margin-top: 8px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.2); width: 100%; }
    .nav-links-download a { display: inline-block; background: var(--ink); color: #FFFFFF; font-weight: 600; padding: 10px 20px; border-radius: 100px; width: auto; }

    /* Hero: text first, image/phone mockup AFTER on mobile */
    .hero { grid-template-columns: 1fr; padding: 40px 20px 50px; }
    .hero-text { order: 1; }
    .phone-wrap { order: 2; margin-top: 30px; }
    .hero-image-wrap { order: 2; margin-top: 30px; }
    .hero-image { height: 440px; }
    .hero-image.hero-image-landscape { height: auto; max-width: 100%; }
    .phone { width: 220px; height: 440px; }

    .section { padding: 44px 20px; }
    .steps-grid, .trouble-grid, .pros-cons { grid-template-columns: 1fr; }
    .player-list { grid-template-columns: 1fr; }
    .shot-row { grid-template-columns: repeat(2, 1fr); }
    .trouble-ticket p { padding-left: 0; margin-top: 12px; }

    .table-card td { padding: 13px 18px; font-size: 13.5px; }
    .safe-box { padding: 26px 22px; }
    .contact-card, .feature-card, .device-card, .player-card, .req-card, .emulator-card { padding: 22px; }
}

@media (max-width: 640px) {
    .feature-grid, .device-grid, .info-grid, .req-grid, .steps-grid { grid-template-columns: 1fr; }
    .stat-line { gap: 20px; }
    .hero-h1 { font-size: 26px; }
    .footer-inner { flex-direction: column; }
    .footer-brand .logo-image { height: 44px; }
    .footer-links { gap: 36px; }
    .shot-row { grid-template-columns: 1fr; }
    .device-icon { width: 60px; height: 60px; }
    .device-icon svg { width: 28px; height: 28px; }
    .table-card td:first-child { width: 46%; padding: 12px 14px; }
    .table-card td:last-child { padding: 12px 14px; }
}

@media (max-width: 480px) {
    .nav-inner { padding: 0 14px; }
    .logo-image { height: 44px; }
    .nav-cta { padding: 7px 13px; font-size: 12px; }
    .section-title { font-size: 22px; }
    .heading-band .section-title { font-size: 18px; }
    .hero-h1 { font-size: 23px; }
    .hero-sub { font-size: 15px; }
    .btn-primary { padding: 12px 20px; font-size: 14px; }
    .stat-num { font-size: 21px; }
    .feature-card, .device-card, .player-card, .req-card, .contact-card, .emulator-card, .step-card { padding: 18px; }
    .safe-top { flex-direction: column; align-items: flex-start; gap: 12px; }
    .safe-stats { flex-direction: column; }
    .safe-box { padding: 20px 18px; }
    .safe-top h3 { font-size: 17px; }
    .safe-checklist { gap: 8px; }
    .safe-check-item { font-size: 12px; padding: 6px 12px; }
    .pc-col { padding: 20px; }
    .cta-box { padding: 22px 20px; }
    .faq-item { padding: 16px 18px; }
    .faq-item p { margin-left: 0; }
    .table-wrap { -webkit-overflow-scrolling: touch; }
    .device-grid { grid-template-columns: 1fr; }
    .legal-section h2 { font-size: 18px; gap: 10px; }
    .legal-num { width: 28px; height: 28px; font-size: 13px; }
    .method-heading { font-size: 20px; }
    .page-title { font-size: 26px; }
    .contact-card-icon, .req-icon { width: 40px; height: 40px; }
}