:root {
    --cream: #FFF8F1;
    --peach: #FBEAE0;
    --orange: #E8590C;
    --orange-deep: #B8430A;
    --ink: #211C17;
    --ink-soft: #6E655C;
    --line: #EAE0D5;
    --green: #4C7A3D;
    --red: #B8432F;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.65;
}
.serif { font-family: 'Fraunces', serif; }
a { color: inherit; }
ul { list-style: none; }

/* 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: 20px 40px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.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 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;
}

/* HERO */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 40px 80px;
    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(28px, 3.4vw, 42px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    color: var(--ink);
}
.hero-sub {
    font-size: 16.5px;
    color: var(--ink-soft);
    max-width: 480px;
    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; }
.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); }

/* SECTIONS */
.section { max-width: 1200px; margin: 0 auto; padding: 64px 40px; }
.section.alt { background: var(--peach); max-width: 100%; }
.section.alt > * { max-width: 1120px; margin-left: auto; margin-right: auto; }
.section-title { font-size: 30px; font-weight: 600; margin-bottom: 22px; color: var(--ink); }
.heading-band {
    width: 80%;
    background: var(--orange);
    border-radius: 12px;
    margin-bottom: 26px;
}

.heading-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 12px 26px;
  
}

.heading-band .section-title {
    color: #fff;
    margin: 0;
    font-size: 24px;
   
}
.section-lead { color: var(--ink-soft); max-width: 720px; margin-bottom: 32px; }
.section-body.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.section-body p { color: var(--ink-soft); }
.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;
}

/* Is HDO Box Safe - single boxed design */
.safe-box {
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 34px 38px;
    box-shadow: 0 14px 32px -18px rgba(33,28,23,0.16);
    max-width: 900px;
}
.safe-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E9F2E4;
    color: var(--green);
    font-weight: 700;
    font-size: 13px;
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 18px;
}
.safe-badge .dot-icon { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.safe-box p { color: var(--ink-soft); font-size: 16px; line-height: 1.8; margin-bottom: 14px; }
.safe-box p:last-child { margin-bottom: 0; }

/* Troubleshooting - unified creative ticket list box */
.trouble-box {
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 14px 32px -18px rgba(33,28,23,0.16);
    overflow: hidden;
    max-width: 900px;
}
.trouble-row {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px 30px;
    border-bottom: 1px solid var(--line);
    position: relative;
}
.trouble-row:last-child { border-bottom: none; }
.trouble-row::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--orange);
    opacity: 0;
    transition: opacity 0.15s ease;
}
.trouble-row:hover::before { opacity: 1; }
.trouble-row:hover { background: var(--cream); }
.trouble-icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    border-radius: 12px;
    background: var(--peach);
    color: var(--orange-deep);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 16px;
}
.trouble-row h3 { font-size: 15.5px; margin-bottom: 5px; color: var(--ink); }
.trouble-row p { color: var(--ink-soft); font-size: 14px; margin: 0; }

.note { margin-top: 20px; color: var(--ink-soft); font-size: 14.5px; }
.note strong { color: var(--ink); }

/* App info table - single unified table, bold orange border */
.table-card {
    border: 3px solid var(--orange);
    border-radius: 16px;
    overflow: hidden;
    background: #FFFFFF;
    max-width: 760px;
}
.table-card table { width: 100%; border-collapse: collapse; }
.table-card tr:not(:last-child) td { border-bottom: 1.5px solid rgba(232,89,12,0.4); }
.table-card td { padding: 15px 24px; font-size: 14.5px; }
.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); }

/* Feature grid - modern, shadow, bold accent */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature-card {
    background: #FFFFFF;
    border: 1.5px solid var(--line);
    border-top: 4px solid var(--orange);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 10px 26px -16px rgba(33,28,23,0.16);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px -16px rgba(33,28,23,0.22);
    border-color: var(--orange);
}
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.feature-card p { color: var(--ink-soft); font-size: 14px; }

/* Device section - distinct icon-row layout */
.device-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.device-card {
    display: flex;
    gap: 20px;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 10px 26px -16px rgba(33,28,23,0.14);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.device-card:hover { transform: translateY(-3px); box-shadow: 0 18px 32px -16px rgba(33,28,23,0.2); }
.device-icon {
    flex-shrink: 0;
    width: 64px; height: 64px;
    border-radius: 16px;
    background: linear-gradient(160deg, var(--orange), var(--orange-deep));
    color: #FFFFFF;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 18px;
    box-shadow: 0 12px 22px -10px rgba(232,89,12,0.5);
}
.device-card h3 { font-size: 16.5px; margin-bottom: 6px; color: var(--ink); }
.device-card p { color: var(--ink-soft); font-size: 13.5px; }

/* Install steps - card grid with floating badge numbers */
.steps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 20px; }
.step-card {
    position: relative;
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 26px 22px 20px;
    box-shadow: 0 8px 20px -14px rgba(33,28,23,0.12);
}
.step-badge {
    position: absolute;
    top: -16px; left: 22px;
    width: 34px; height: 34px;
    background: var(--orange);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; font-weight: 700;
    box-shadow: 0 6px 14px -4px rgba(232,89,12,0.5);
}
.step-card h3 { font-size: 15.5px; margin-bottom: 6px; margin-top: 6px; color: var(--ink); }
.step-card p { color: var(--ink-soft); font-size: 13.5px; }

/* Screenshot placeholder row - 4 in one line */
.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; }

/* Media player - modern bordered cards with gradient icon */
.player-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.player-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 26px -16px rgba(33,28,23,0.14);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.player-card:hover { transform: translateY(-3px); box-shadow: 0 18px 32px -16px rgba(33,28,23,0.2); }
.player-avatar {
    flex-shrink: 0;
    width: 58px; height: 58px;
    border-radius: 16px;
    background: linear-gradient(160deg, var(--orange), var(--orange-deep));
    color: #FFFFFF;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 18px;
    box-shadow: 0 12px 22px -10px rgba(232,89,12,0.5);
}
.player-card h3 { font-size: 15.5px; margin-bottom: 5px; color: var(--ink); }
.player-card p { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }

/* Troubleshooting */
.trouble-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.trouble-card { background: #FFFFFF; border: 1px solid var(--line); border-left: 3px solid var(--orange); border-radius: 10px; padding: 18px 22px; }
.trouble-card h3 { font-size: 14.5px; margin-bottom: 6px; }
.trouble-card p { color: var(--ink-soft); font-size: 13.5px; }

/* 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);
}
.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: 12px; max-width: 800px; }
.faq-item { background: #FFFFFF; border: 1px solid var(--line); border-radius: 12px; padding: 18px 22px; }
.faq-item summary { font-weight: 600; font-size: 15px; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; float: right; color: var(--orange); font-weight: 700; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { margin-top: 12px; color: var(--ink-soft); font-size: 14.5px; }

/* CTA band */
.cta-band {
    text-align: center;
    background: linear-gradient(135deg, var(--peach), #F6D9C4);
    color: var(--ink);
    max-width: 100%;
    padding: 72px 40px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.cta-band .section-title, .cta-band .section-lead { color: var(--ink); margin-left: auto; margin-right: auto; }
.cta-band .section-lead { color: var(--ink-soft); }

/* FOOTER */
.site-footer { background: #17130F; color: rgba(255,255,255,0.72); padding: 56px 40px 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 */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; }
    .phone-wrap { order: -1; }
    .section-body.two-col { grid-template-columns: 1fr; }
    .feature-grid, .device-grid, .player-grid, .steps-grid { grid-template-columns: 1fr; }
    .shot-row { grid-template-columns: repeat(2, 1fr); }
    .trouble-grid, .pros-cons { grid-template-columns: 1fr; }
}