/* HDBOX Player — global site stylesheet
   Dark/gold palette, Cairo font, modern SaaS landing pattern */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&display=swap');

:root {
    --bg-primary:     #1B1248;
    --bg-secondary:   #251A5C;
    --bg-panel-dark:  #160E3B;
    --bg-card:        #2D2169;
    --bg-card-hi:     #3A2C7E;
    --bg-card-light:  #ECE7F9;
    --bg-card-cream:  #FFF6E8;
    --text-on-light:  #1B1248;
    --border-def:     #3A2C72;
    --border-hi:      #5A4A9E;
    --gold:           #FFC53D;
    --gold-light:     #FFD56B;
    --gold-dark:      #C99523;
    --text-primary:   #FFFFFF;
    --text-secondary: #CABDE8;
    --text-muted:     #8A7BB8;
    --success:        #4CAF50;
    --warn:           #FFB300;
    --danger:         #FF5666;
    --shadow-glow:    0 18px 48px rgba(255,197,61,.28);
}

* , *::before, *::after { box-sizing: border-box; }

html, body {
    margin: 0; padding: 0;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    min-height: 100vh;
}

body {
    background:
      radial-gradient(ellipse 1400px 800px at 70% -10%, rgba(120,86,224,.22), transparent 60%),
      radial-gradient(ellipse 1000px 700px at -10% 30%, rgba(76,46,162,.28), transparent 60%),
      linear-gradient(180deg, #2A1F73 0%, var(--bg-primary) 50%, #0F0930 100%);
    background-attachment: fixed;
}

/* Decorative geometric shapes behind sections */
.shape-bg {
    position: absolute; inset: 0; overflow: hidden; pointer-events: none;
    z-index: 0;
}
.shape-bg .sq {
    position: absolute; border: 2px solid rgba(202,189,232,.16); border-radius: 18px;
    transform: rotate(15deg);
    background: rgba(202,189,232,.03);
}
.shape-bg .sq.s1 { width: 120px; height: 120px; top: 10%;  right: 6%;  opacity: .9; }
.shape-bg .sq.s2 { width: 180px; height: 180px; bottom: 12%; right: 18%; opacity: .55; }
.shape-bg .sq.s3 { width: 80px;  height: 80px;  top: 38%;  left: 7%;   opacity: .8; }
.shape-bg .sq.s4 { width: 140px; height: 140px; top: 65%;  left: 26%;  opacity: .45; }
.shape-bg .sq.s5 { width: 100px; height: 100px; top: 22%;  left: 42%;  opacity: .35; }

a { color: var(--gold); text-decoration: none; transition: color .14s; }
a:hover { color: var(--gold-light); }

h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.01em; margin: 0; }
p { line-height: 1.6; margin: 0; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 70px 0; position: relative; }

/* ─── NAV ─── */
header.topnav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(22,14,59,.78);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(202,189,232,.12);
}
header.topnav .wrap { display: flex; align-items: center; padding: 16px 24px; gap: 28px; }
header.topnav .brand {
    display: flex; align-items: center; gap: 10px;
    font-weight: 900; letter-spacing: 2px; font-size: 17px;
    color: var(--text-primary); white-space: nowrap;
}
header.topnav .brand .logo {
    width: 38px; height: 38px; border-radius: 9px; object-fit: contain;
    background: var(--gold);
}
header.topnav .brand .gold { color: var(--gold); margin-left: 4px; }
header.topnav nav.menu { display: flex; gap: 6px; }
header.topnav nav.menu a {
    color: var(--text-secondary); padding: 8px 14px; border-radius: 8px;
    font-size: 14px; font-weight: 600; letter-spacing: .3px;
    transition: background .14s, color .14s;
}
header.topnav nav.menu a:hover { color: var(--text-primary); background: rgba(255,255,255,.06); }
header.topnav nav.menu a.active { color: var(--gold); background: rgba(255,197,61,.12); }

header.topnav .right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
header.topnav .right .lang {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--text-secondary); font-size: 13px; font-weight: 600;
    padding: 6px 10px; border-radius: 8px; cursor: pointer;
}
header.topnav .right .lang:hover { color: var(--text-primary); background: rgba(255,255,255,.04); }

header.topnav .right .auth-link {
    color: var(--text-primary);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(202,189,232,.22);
    padding: 9px 22px;
    border-radius: 999px;
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.5px;
    transition: background .14s, border-color .14s;
}
header.topnav .right .auth-link:hover {
    background: rgba(255,197,61,.18);
    border-color: var(--gold);
    color: var(--gold);
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 26px;
    border-radius: 999px;
    font-family: inherit; font-size: 14px; font-weight: 800;
    letter-spacing: .5px;
    text-decoration: none; cursor: pointer; border: 0;
    transition: transform .14s, box-shadow .15s, background .14s;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
    color: #1B1248;
    box-shadow: 0 10px 26px rgba(255,197,61,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(255,197,61,.5); }
.btn-ghost {
    background: rgba(255,255,255,.06); color: var(--text-primary);
    border: 1px solid var(--border-hi);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-outline {
    background: transparent; color: var(--gold);
    border: 1.5px solid var(--gold);
}
.btn-outline:hover { background: rgba(212,175,55,.08); }
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 16px 32px; font-size: 15px; }

/* ─── HERO (home) ─── */
.hero {
    padding: 70px 0 60px;
    position: relative;
    overflow: hidden;
}
.hero-grid {
    display: grid; gap: 36px;
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } }
.hero-eyebrow {
    display: inline-block;
    background: rgba(255,197,61,.12); color: var(--gold);
    padding: 6px 14px; border-radius: 999px;
    font-size: 11px; font-weight: 800; letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
    border: 1px solid rgba(255,197,61,.25);
}
.hero h1 {
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.07;
    font-weight: 900;
    margin: 0 0 22px;
}
.hero h1 .price-pop { color: var(--gold); }
.hero p.lead {
    color: var(--text-secondary);
    font-size: 16px; max-width: 540px;
    margin: 0 0 30px; line-height: 1.65;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }

.pricing-stack { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; max-width: 520px; }
.pricing-card {
    background: rgba(45,33,105,.55);
    border: 1px solid rgba(202,189,232,.15);
    border-radius: 16px;
    padding: 20px 18px;
    transition: border-color .15s, transform .15s, background .15s;
    backdrop-filter: blur(6px);
}
.pricing-card:hover { background: rgba(58,44,126,.7); border-color: rgba(202,189,232,.3); }
.pricing-card.featured {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(255,197,61,.12), rgba(255,197,61,.04));
    box-shadow: 0 0 0 1px rgba(255,197,61,.4), 0 10px 32px rgba(255,197,61,.1);
}
.pricing-card .label {
    font-size: 11px; color: var(--gold); font-weight: 800;
    letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 8px;
}
.pricing-card .price {
    color: var(--text-primary);
    font-size: 28px; font-weight: 900;
    margin-bottom: 4px;
}
.pricing-card .desc {
    color: var(--text-muted); font-size: 12px; line-height: 1.5;
}

.hero-screenshot {
    background: linear-gradient(135deg, rgba(58,44,126,.75), rgba(22,14,59,.85));
    border: 1px solid rgba(202,189,232,.18);
    border-radius: 22px;
    padding: 22px;
    box-shadow:
      0 30px 80px rgba(15,9,48,.55),
      0 0 0 1px rgba(255,197,61,.12),
      inset 0 1px 0 rgba(255,255,255,.05);
    position: relative;
    backdrop-filter: blur(8px);
}
.hero-screenshot img { width: 100%; border-radius: 14px; display: block; box-shadow: 0 20px 48px rgba(0,0,0,.4); }
.hero-screenshot .badge {
    position: absolute; top: -14px; left: 24px;
    background: var(--gold); color: var(--text-on-light);
    padding: 6px 14px; border-radius: 999px;
    font-size: 11px; font-weight: 800; letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 6px 18px rgba(255,197,61,.4);
}

/* ─── SECTION HEADER ─── */
.section-head { text-align: center; margin-bottom: 44px; }
.section-head .eyebrow {
    display: inline-block;
    color: var(--gold); font-size: 11px;
    letter-spacing: 3px; text-transform: uppercase; font-weight: 800;
    margin-bottom: 12px;
    padding: 6px 14px; background: rgba(255,197,61,.12); border-radius: 999px;
    border: 1px solid rgba(255,197,61,.22);
}
.section-head h2 {
    font-size: clamp(26px, 3.6vw, 38px);
    line-height: 1.15; margin-bottom: 12px;
}
.section-head p { color: var(--text-secondary); font-size: 15px; max-width: 620px; margin: 0 auto; }

/* ─── DEVICE GRID — light cards inside a darker purple panel ─── */
.device-panel {
    background: rgba(22,14,59,.65);
    border: 1px solid rgba(202,189,232,.12);
    border-radius: 22px;
    padding: 32px;
    margin-bottom: 18px;
    backdrop-filter: blur(8px);
}
.device-panel .panel-head {
    display: flex; align-items: flex-start; justify-content: space-between;
    gap: 16px; margin-bottom: 24px; flex-wrap: wrap;
}
.device-panel .panel-head h2 {
    font-size: clamp(20px, 2.5vw, 28px);
    line-height: 1.2; margin-bottom: 6px;
}
.device-panel .panel-head p { color: var(--text-secondary); font-size: 13.5px; }

.device-grid {
    display: grid; gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.device-card {
    background: var(--bg-card-light);
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 14px;
    padding: 18px;
    transition: transform .15s, box-shadow .15s;
    text-decoration: none; color: var(--text-on-light);
    display: flex; align-items: center; gap: 14px;
}
.device-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(0,0,0,.25); }
.device-card .icon {
    width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
    background: linear-gradient(135deg, rgba(27,18,72,.12), rgba(27,18,72,.04));
    display: flex; align-items: center; justify-content: center;
    color: var(--bg-primary); font-size: 22px;
}
.device-card .body { flex: 1; min-width: 0; }
.device-card .name {
    font-size: 13px; font-weight: 800; color: var(--text-on-light);
    margin-bottom: 2px;
}
.device-card .meta { font-size: 11px; color: rgba(27,18,72,.55); }
.device-card .pill {
    display: inline-flex; align-items: center; gap: 4px;
    background: var(--gold); color: var(--text-on-light);
    padding: 4px 10px; border-radius: 999px;
    font-size: 11px; font-weight: 800; flex-shrink: 0;
}

/* ─── STEPS (how it works) ─── */
.steps-grid {
    display: grid; gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.step-card {
    background: rgba(45,33,105,.55);
    border: 1px solid rgba(202,189,232,.15);
    border-radius: 18px;
    padding: 28px 24px;
    position: relative;
    backdrop-filter: blur(8px);
}
.step-card .step-num {
    position: absolute; top: -16px; left: 24px;
    width: 38px; height: 38px;
    background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
    color: var(--text-on-light);
    font-weight: 900; font-size: 17px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 20px rgba(255,197,61,.4);
}
.step-card h3 { margin: 14px 0 10px; font-size: 17px; font-weight: 800; }
.step-card p { color: var(--text-secondary); font-size: 13.5px; line-height: 1.6; }

/* ─── CARDS / PANELS ─── */
.panel {
    background: rgba(45,33,105,.55);
    border: 1px solid rgba(202,189,232,.15);
    border-radius: 18px;
    padding: 30px;
    backdrop-filter: blur(8px);
}
.panel h3 {
    font-size: 19px; font-weight: 800; margin: 0 0 14px;
}

.alert {
    border-radius: 14px;
    padding: 18px 22px;
    font-size: 13.5px; line-height: 1.55;
    display: flex; gap: 14px; align-items: flex-start;
}
.alert.warn { background: rgba(255,179,0,.08); border: 1px solid rgba(255,179,0,.3); color: #FFCB57; }
.alert.ok   { background: rgba(76,175,80,.1);  border: 1px solid rgba(76,175,80,.35); color: #86efac; }
.alert.err  { background: rgba(229,57,53,.1);  border: 1px solid rgba(229,57,53,.4);  color: #fca5a5; }
.alert .label {
    font-weight: 800; letter-spacing: 1.5px; font-size: 11px;
    text-transform: uppercase; display: block; margin-bottom: 3px;
}

/* ─── ACTIVATION HERO CARD ─── */
.activation-hero {
    margin: 40px auto 60px;
    max-width: 560px;
    background:
      linear-gradient(180deg, rgba(255,197,61,.08), rgba(255,197,61,0) 40%),
      rgba(45,33,105,.7);
    border: 1px solid rgba(202,189,232,.18);
    border-top: 3px solid var(--gold);
    border-radius: 20px;
    padding: 36px 32px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 24px 60px rgba(15,9,48,.5);
}
.activation-hero h1 {
    font-size: 32px; font-weight: 900; margin: 0 0 10px;
}
.activation-hero p.lead {
    color: var(--text-secondary); font-size: 14px;
    margin: 0 auto 26px; max-width: 420px; line-height: 1.6;
}

/* ─── FORMS ─── */
.field { margin-bottom: 16px; text-align: left; }
.field label {
    display: block;
    font-size: 11px; font-weight: 800; letter-spacing: 1.5px;
    color: var(--text-secondary); text-transform: uppercase;
    margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
    width: 100%;
    background: rgba(22,14,59,.6);
    border: 1.5px solid rgba(202,189,232,.2);
    color: var(--text-primary);
    padding: 14px 18px;
    border-radius: 999px;
    font-family: inherit; font-size: 14.5px;
    transition: border-color .14s, box-shadow .14s, background .14s;
}
.field textarea { border-radius: 18px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: 0; border-color: var(--gold);
    background: rgba(22,14,59,.8);
    box-shadow: 0 0 0 3px rgba(255,197,61,.22);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-muted); }

.field-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .field-row-2 { grid-template-columns: 1fr; } }

/* Type toggle (M3U / Xtream tabs) */
.tabs {
    display: inline-flex; gap: 4px;
    background: rgba(22,14,59,.6);
    border: 1.5px solid rgba(202,189,232,.2);
    border-radius: 999px;
    padding: 5px;
    margin-bottom: 18px;
}
.tabs label {
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 13px; font-weight: 700;
    cursor: pointer; color: var(--text-secondary);
    transition: background .14s, color .14s;
    user-select: none;
}
.tabs label.on { background: var(--gold); color: var(--text-on-light); }
.tabs input { display: none; }

/* ─── GRID 2 ─── */
.grid-2 {
    display: grid; gap: 24px;
    grid-template-columns: 1fr 1fr;
}
@media (max-width: 820px) { .grid-2 { grid-template-columns: 1fr; } }

/* ─── INFO ROWS (compliance / terms) ─── */
.three-up {
    display: grid; gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-bottom: 30px;
}
.three-up .item {
    background: var(--bg-card-light);
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 14px;
    padding: 22px 20px;
    color: var(--text-on-light);
}
.three-up .item .b { color: rgba(27,18,72,.7); font-size: 13.5px; line-height: 1.55; }
.three-up .item .h { color: rgba(27,18,72,.85); }
.three-up .item .h {
    font-size: 11px; font-weight: 800; letter-spacing: 2px;
    text-transform: uppercase; margin-bottom: 8px;
}

.terms-grid { display: grid; gap: 20px; grid-template-columns: 1fr 1fr; margin-bottom: 36px; }
@media (max-width: 820px) { .terms-grid { grid-template-columns: 1fr; } }
.terms-block {
    background: var(--bg-card-light);
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 14px; padding: 28px 26px;
    color: var(--text-on-light);
}
.terms-block .tag {
    display: inline-block; background: rgba(27,18,72,.08); color: var(--bg-primary);
    padding: 5px 12px; border-radius: 6px;
    font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
    margin-bottom: 14px;
}
.terms-block h3 { font-size: 22px; margin-bottom: 14px; color: var(--text-on-light); }
.terms-block p { color: rgba(27,18,72,.75); font-size: 13.5px; margin-bottom: 12px; line-height: 1.55; }
.terms-block ul { padding: 0; margin: 0; list-style: none; }
.terms-block ul li {
    color: rgba(27,18,72,.75); font-size: 13.5px; line-height: 1.55;
    padding: 10px 0 10px 28px; position: relative;
    border-top: 1px solid rgba(27,18,72,.1);
}
.terms-block ul li:first-child { border-top: 0; }
.terms-block ul li::before {
    content: ''; position: absolute; left: 6px; top: 16px;
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--gold);
}

/* ─── FAQ ─── */
.faq { display: grid; gap: 10px; }
.faq details {
    background: rgba(45,33,105,.55);
    border: 1px solid rgba(202,189,232,.15);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    backdrop-filter: blur(6px);
}
.faq details[open] { border-color: var(--gold); background: rgba(58,44,126,.7); }
.faq summary {
    padding: 18px 22px;
    font-weight: 700; font-size: 14px;
    cursor: pointer; list-style: none;
    display: flex; align-items: center; gap: 14px;
    color: var(--text-primary);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: '+'; margin-left: auto;
    color: var(--gold); font-size: 22px; font-weight: 800;
    transition: transform .15s;
}
.faq details[open] summary::after { content: '−'; }
.faq .body {
    padding: 0 22px 18px;
    color: var(--text-secondary); font-size: 13.5px; line-height: 1.6;
}

/* ─── FOOTER ─── */
footer.site {
    border-top: 1px solid rgba(202,189,232,.12);
    background: linear-gradient(180deg, rgba(22,14,59,.6), rgba(15,9,48,.95));
    padding: 50px 0 30px;
    margin-top: 80px;
    position: relative;
}
footer.site .cols {
    display: grid; gap: 26px;
    grid-template-columns: 1.1fr 1fr 1fr;
    margin-bottom: 36px;
}
@media (max-width: 820px) { footer.site .cols { grid-template-columns: 1fr; } }
footer.site .col-title {
    color: var(--gold); font-size: 11px;
    font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase;
    margin-bottom: 14px;
}
footer.site ul { list-style: none; padding: 0; margin: 0; }
footer.site ul li { margin-bottom: 8px; }
footer.site ul li a { color: var(--text-secondary); font-size: 13.5px; font-weight: 500; }
footer.site ul li a:hover { color: var(--gold); }
footer.site .platforms { display: flex; flex-wrap: wrap; gap: 10px; }
footer.site .platforms .chip {
    padding: 8px 14px;
    background: rgba(45,33,105,.6);
    border: 1px solid rgba(202,189,232,.18);
    border-radius: 999px;
    font-size: 12px; color: var(--text-secondary);
    font-weight: 600;
}
footer.site .checkout {
    display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
}
footer.site .checkout .ch {
    background: rgba(45,33,105,.6);
    border: 1px solid rgba(202,189,232,.18);
    border-radius: 8px;
    padding: 7px 11px;
    font-size: 11px; font-weight: 700; letter-spacing: .5px;
    color: var(--text-secondary);
}
footer.site .bottom {
    border-top: 1px solid rgba(202,189,232,.12);
    padding-top: 20px;
    display: flex; justify-content: space-between; gap: 16px;
    flex-wrap: wrap;
    font-size: 12px; color: var(--text-muted);
}
footer.site .bottom a { color: var(--text-muted); }
footer.site .bottom a:hover { color: var(--text-secondary); }

/* ─── BREADCRUMB / PAGE HEADER ─── */
.page-head {
    padding: 50px 0 40px; text-align: center; position: relative;
}
.page-head .crumb {
    display: inline-block; padding: 7px 16px;
    background: rgba(255,197,61,.12); color: var(--gold);
    border: 1px solid rgba(255,197,61,.22);
    border-radius: 999px; font-size: 11px;
    font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 14px;
}
.page-head h1 {
    font-size: clamp(28px, 4vw, 42px); line-height: 1.1;
}

/* ─── CONTACT GRID ─── */
.contact-grid {
    display: grid; gap: 22px;
    grid-template-columns: 1.1fr 1fr;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ─── UTIL ─── */
.gold { color: var(--gold); }
.muted { color: var(--text-muted); }
.center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 26px; }
.mb-4 { margin-bottom: 16px; }
.mono { font-family: 'SF Mono', 'Roboto Mono', Menlo, Consolas, monospace; }

/* Code-style chip for Device IDs etc */
.chip-mono {
    display: inline-block;
    background: var(--bg-primary); color: var(--gold);
    padding: 4px 10px; border-radius: 6px;
    font-family: 'SF Mono', 'Roboto Mono', Menlo, Consolas, monospace;
    font-size: 13px; letter-spacing: 1.5px; font-weight: 700;
}

/* Status dot */
.status-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; vertical-align: middle; margin-right: 6px; }
.dot-active { background: var(--success); }
.dot-warn   { background: var(--warn); }
.dot-bad    { background: var(--danger); }
.dot-muted  { background: var(--text-muted); }

/* ╔═══════════════════════════════════════════════════════════════════╗
   ║ HOME — Smarters-style sections (kickers, proof, TV mockup, etc) ║
   ╚═══════════════════════════════════════════════════════════════════╝ */

/* ─── Kicker pills above title ─── */
.kicker-row {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-bottom: 22px;
}
.kicker-pill {
    display: inline-flex; align-items: center;
    padding: 7px 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(202,189,232,.22);
    color: var(--text-primary);
    border-radius: 999px;
    font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}
.kicker-pill:first-child {
    background: rgba(255,197,61,.16);
    border-color: rgba(255,197,61,.45);
    color: var(--gold);
}

/* ─── Hero copy ─── */
.hero-copy { max-width: 600px; }
.hero-title {
    font-size: clamp(32px, 4.6vw, 54px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
    color: var(--text-primary);
}
.hero-title .price-pop {
    color: var(--gold);
    text-shadow: 0 0 32px rgba(255,197,61,.4);
}
.hero-lead {
    color: var(--text-secondary);
    font-size: 15px; font-weight: 500;
    margin: 0 0 28px;
}

/* ─── Proof cards (2-up under lead) ─── */
.proof-grid {
    display: grid; gap: 14px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 28px;
    max-width: 520px;
}
@media (max-width: 600px) { .proof-grid { grid-template-columns: 1fr; } }
.proof-card {
    background: rgba(45,33,105,.55);
    border: 1px solid rgba(202,189,232,.18);
    border-radius: 16px;
    padding: 18px 20px;
    backdrop-filter: blur(8px);
    transition: border-color .14s, background .14s;
}
.proof-card:hover {
    background: rgba(58,44,126,.7);
    border-color: rgba(255,197,61,.4);
}
.proof-card strong {
    display: block;
    font-size: 26px; font-weight: 900; color: var(--text-primary);
    margin-bottom: 4px; letter-spacing: -0.01em;
}
.proof-card:first-child strong { color: var(--gold); }
.proof-card span {
    display: block;
    color: var(--text-secondary); font-size: 12.5px;
    line-height: 1.5;
}

/* ─── Hero panel right (TV mockup area) ─── */
.hero-panel {
    position: relative;
    display: flex; align-items: center; justify-content: center;
}
.hero-stage {
    position: relative;
    width: 100%; max-width: 520px;
    aspect-ratio: 1 / 0.88;
    background:
      radial-gradient(ellipse at 50% 30%, rgba(255,197,61,.12), transparent 55%),
      linear-gradient(160deg, rgba(58,44,126,.85), rgba(22,14,59,.95));
    border: 1px solid rgba(202,189,232,.2);
    border-radius: 28px;
    padding: 28px 24px;
    box-shadow:
      0 30px 80px rgba(15,9,48,.6),
      inset 0 1px 0 rgba(255,255,255,.06);
    backdrop-filter: blur(10px);
    display: flex; flex-direction: column;
    justify-content: space-between;
}
.hero-stage-badge {
    align-self: flex-start;
    background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
    color: var(--text-on-light);
    padding: 10px 16px;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(255,197,61,.35);
    display: flex; flex-direction: column; gap: 2px;
}
.hero-stage-badge span {
    font-size: 10px; font-weight: 800;
    letter-spacing: 1.8px; text-transform: uppercase;
    opacity: .8;
}
.hero-stage-badge strong {
    font-size: 14px; font-weight: 900;
    letter-spacing: 0.3px;
}

.tv-mockup {
    align-self: center;
    width: 75%; max-width: 340px;
    display: flex; flex-direction: column; align-items: center;
}
.tv-mockup-screen {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: linear-gradient(180deg, #0a0a16, #03030A);
    border: 6px solid #0a0a14;
    border-radius: 12px;
    box-shadow:
      0 0 0 1px rgba(255,255,255,.06),
      0 22px 50px rgba(0,0,0,.55),
      inset 0 0 60px rgba(255,197,61,.05);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
}
.tv-mockup-screen::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 50% 30%, rgba(255,197,61,.1), transparent 60%);
    pointer-events: none;
}
.tv-mockup-screen img {
    width: 70px; height: 70px;
    border-radius: 12px;
    z-index: 1;
}
.tv-mockup-title {
    font-size: 14px; font-weight: 900; letter-spacing: 3px;
    color: var(--text-primary);
    z-index: 1;
}
.tv-mockup-sub {
    font-size: 9px; color: var(--text-muted);
    letter-spacing: 2px; text-transform: uppercase; font-weight: 700;
    z-index: 1;
}

/* ─── Mini app preview inside TV mockup ─── */
.mock-app {
    width: 100%; height: 100%;
    padding: 10px 14px;
    display: flex; flex-direction: column;
    gap: 8px;
    z-index: 1;
    position: relative;
}
.mock-app-header {
    display: flex; justify-content: space-between; align-items: center;
}
.mock-app-logo {
    font-size: 9px; font-weight: 900;
    letter-spacing: 1.5px; color: var(--text-primary);
}
.mock-app-clock {
    font-size: 9px; font-weight: 900;
    color: var(--gold);
    font-family: 'SF Mono', monospace;
}
.mock-app-cards {
    flex: 1;
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 4px;
}
.mock-card {
    border-radius: 4px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 3px;
    padding: 4px;
}
.mock-card-icon { font-size: 12px; }
.mock-card-label {
    font-size: 6px; font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.mock-card-live   { background: linear-gradient(180deg,#E6B843,#A37A1B); }
.mock-card-movies { background: linear-gradient(180deg,#3057DD,#14276B); }
.mock-card-series { background: linear-gradient(180deg,#8A2A8C,#3E0E40); }
.mock-card-live .mock-card-label { color: #2A1F03; }

.mock-app-footer {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4px;
}
.mock-app-pill {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(202,189,232,.18);
    color: var(--text-secondary);
    border-radius: 4px;
    padding: 3px 6px;
    font-size: 6px; font-weight: 700;
    letter-spacing: 0.5px;
    text-align: center;
    text-transform: uppercase;
}
.tv-mockup-stand {
    width: 30%; height: 12px;
    background: linear-gradient(180deg, #0a0a14, #050509);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,.4);
}

.hero-stage-card {
    background: rgba(22,14,59,.7);
    border: 1px solid rgba(202,189,232,.18);
    border-radius: 14px;
    padding: 14px 16px;
}
.hero-stage-card p {
    font-size: 10px; color: var(--gold);
    font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 4px;
}
.hero-stage-card strong {
    display: block;
    font-size: 12.5px; color: var(--text-primary);
    font-weight: 600; line-height: 1.5;
}

/* ─── How to install link (top-right of device panel) ─── */
.install-link {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--bg-card-light);
    color: var(--text-on-light);
    padding: 11px 18px;
    border-radius: 999px;
    font-weight: 800; font-size: 13px;
    transition: transform .14s, box-shadow .14s;
    border: 1px solid rgba(255,255,255,.8);
}
.install-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0,0,0,.3);
    color: var(--text-on-light);
}
.install-link-icon {
    width: 28px; height: 28px;
    background: rgba(101,88,255,.14);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: #6558FF;
}

/* ─── Device card — new structure (icon + body + end) ─── */
.device-card {
    background: var(--bg-card-light);
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 16px;
    padding: 16px;
    transition: transform .15s, box-shadow .15s;
    text-decoration: none; color: var(--text-on-light);
    display: flex; align-items: center; gap: 14px;
    min-height: 80px;
}
.device-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0,0,0,.3);
    color: var(--text-on-light);
}
.device-card .icon {
    width: 44px; height: 44px; border-radius: 10px;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    color: var(--bg-primary);
}
.device-card .body { flex: 1; min-width: 0; }
.device-card .copy-eyebrow {
    font-size: 10px; font-weight: 700; letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(27,18,72,.55);
    margin-bottom: 1px;
}
.device-card .name {
    font-size: 13.5px; font-weight: 800;
    color: var(--text-on-light);
    line-height: 1.2; margin-bottom: 3px;
}
.device-card .meta {
    font-size: 11.5px; color: rgba(27,18,72,.6);
    line-height: 1.3;
}
.device-card .end {
    flex-shrink: 0;
    display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
}
.device-card .arrow {
    color: rgba(27,18,72,.55);
    font-size: 16px; font-weight: 800;
}
.device-card:hover .arrow { color: var(--bg-primary); }

/* Badge pills on device cards */
.badge-pill {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 9.5px; font-weight: 800;
    letter-spacing: 1px; text-transform: uppercase;
}
.badge-pill.popular { background: rgba(255,197,61,.25); color: #B07F00; }
.badge-pill.apk     { background: rgba(60,217,134,.25); color: #1A7A45; }
.badge-pill.store   { background: rgba(101,88,255,.25); color: #4639B5; }
.badge-pill.mobile  { background: rgba(255,109,158,.25); color: #B83668; }

/* ─── Warning bar (Important!) ─── */
.warning-bar {
    display: flex; align-items: center; gap: 16px;
    background: rgba(22,14,59,.78);
    border: 1px solid rgba(202,189,232,.22);
    border-radius: 16px;
    padding: 16px 22px;
    margin-top: 18px;
    backdrop-filter: blur(8px);
}
.warning-bar-icon {
    width: 36px; height: 36px;
    background: rgba(255,179,0,.18);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--warn);
    flex-shrink: 0;
}
.warning-bar-copy strong {
    display: block;
    color: var(--text-primary);
    font-size: 13.5px; font-weight: 800;
    margin-bottom: 2px;
    letter-spacing: 0.3px;
}
.warning-bar-copy p {
    color: var(--text-secondary);
    font-size: 12.5px; line-height: 1.5;
    margin: 0;
}

/* ─── About App & Features section ─── */
.about-section { padding: 70px 0; position: relative; }
.about-shell {
    display: grid; gap: 50px;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
}
@media (max-width: 980px) { .about-shell { grid-template-columns: 1fr; } }
.about-kicker {
    display: inline-block;
    color: var(--gold); font-size: 11px;
    letter-spacing: 3px; text-transform: uppercase; font-weight: 800;
    background: rgba(255,197,61,.12);
    border: 1px solid rgba(255,197,61,.22);
    padding: 6px 14px; border-radius: 999px;
    margin-bottom: 14px;
}
.about-title {
    font-size: clamp(26px, 3.4vw, 38px);
    line-height: 1.15; margin-bottom: 10px;
    color: var(--text-primary);
}
.about-lead {
    color: var(--text-secondary);
    font-size: 14.5px;
    margin-bottom: 22px;
}

.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 11px 0;
    border-top: 1px solid rgba(202,189,232,.1);
    color: var(--text-secondary);
    font-size: 13.5px; line-height: 1.55;
}
.checklist li:first-child { border-top: 0; }
.checklist li strong { color: var(--text-primary); }
.checklist .check {
    flex-shrink: 0;
    width: 22px; height: 22px;
    background: rgba(255,197,61,.18);
    border: 1.5px solid rgba(255,197,61,.5);
    border-radius: 50%;
    position: relative;
    margin-top: 2px;
}
.checklist .check::after {
    content: '';
    position: absolute; left: 6px; top: 4px;
    width: 5px; height: 10px;
    border: solid var(--gold);
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}

.about-grid {
    display: grid; gap: 14px;
    grid-template-columns: 1fr 1fr;
}
@media (max-width: 600px) { .about-grid { grid-template-columns: 1fr; } }
.about-card {
    background: rgba(45,33,105,.55);
    border: 1px solid rgba(202,189,232,.18);
    border-radius: 18px;
    padding: 24px 22px;
    backdrop-filter: blur(8px);
    transition: transform .15s, border-color .15s;
}
.about-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255,197,61,.4);
}
.about-card h3 {
    color: var(--gold);
    font-size: 16px; font-weight: 800;
    letter-spacing: 0.3px; margin-bottom: 8px;
}
.about-card p {
    color: var(--text-secondary);
    font-size: 13px; line-height: 1.55;
}

/* ─── Legal section (Clear terms, clear responsibilities) ─── */
.legal-section { padding: 60px 0 30px; }
.legal-intro { text-align: center; margin-bottom: 34px; max-width: 680px; margin-left: auto; margin-right: auto; }
.legal-kicker {
    display: inline-block;
    color: var(--gold); font-size: 11px;
    letter-spacing: 3px; text-transform: uppercase; font-weight: 800;
    background: rgba(255,197,61,.12);
    border: 1px solid rgba(255,197,61,.22);
    padding: 6px 14px; border-radius: 999px;
    margin-bottom: 14px;
}
.legal-hero-title {
    font-size: clamp(24px, 3.2vw, 34px);
    line-height: 1.2; margin-bottom: 10px;
    color: var(--text-primary);
}
.legal-hero-text {
    color: var(--text-secondary); font-size: 14px;
}

.legal-summary-grid {
    display: grid; gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin-bottom: 30px;
}
.legal-summary-card {
    background: var(--bg-card-light);
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 14px;
    padding: 18px 20px;
    color: var(--text-on-light);
}
.legal-summary-card strong {
    display: block;
    font-size: 11px; font-weight: 800;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--bg-primary);
    margin-bottom: 6px;
}
.legal-summary-card span {
    display: block;
    color: rgba(27,18,72,.7);
    font-size: 13px; line-height: 1.5;
}

.legal-shell {
    display: grid; gap: 18px;
    grid-template-columns: 1fr 1fr;
}
@media (max-width: 820px) { .legal-shell { grid-template-columns: 1fr; } }
.legal-card {
    background: var(--bg-card-light);
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 16px;
    padding: 28px 26px;
    color: var(--text-on-light);
}
.legal-card .legal-kicker {
    background: rgba(27,18,72,.08);
    border-color: rgba(27,18,72,.15);
    color: var(--bg-primary);
}
.legal-title {
    font-size: 22px; font-weight: 800;
    color: var(--text-on-light);
    margin-bottom: 14px;
}
.legal-copy {
    color: rgba(27,18,72,.75);
    font-size: 13.5px; line-height: 1.65;
}
.legal-list { list-style: none; padding: 0; margin: 0; }
.legal-list-item, .legal-list li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 11px 0;
    border-top: 1px solid rgba(27,18,72,.1);
    color: rgba(27,18,72,.75);
    font-size: 13px; line-height: 1.55;
}
.legal-list li:first-child { border-top: 0; }
.legal-list-dot {
    flex-shrink: 0;
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 8px;
}

