/* =========================================================
   ASIKO TV — Design System
   "The Soul of Africa." — black + gold, editorial, broadcast-grade
   ========================================================= */

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

:root{
  --bg:            #0a0a0c;
  --bg-soft:       #0f0f12;
  --panel:         #17171b;
  --panel-2:       #1e1e23;
  --line:          rgba(216,169,75,0.16);
  --line-strong:   rgba(216,169,75,0.32);

  --gold:          #d8a94b;
  --gold-bright:   #f3cd7e;
  --gold-deep:     #a8792c;
  --gold-wash:     rgba(216,169,75,0.10);

  --white:         #f7f5f0;
  --muted:         #a7a4ac;
  --muted-2:       #716f78;
  --red:           #df3b34;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --font-display: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --container: 1220px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--white);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family:var(--font-display); margin:0; line-height:1.12; letter-spacing:-0.01em; }
p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }
input,select,textarea{ font-family:inherit; font-size:1rem; }

:focus-visible{ outline:2px solid var(--gold-bright); outline-offset:3px; }

.container{ max-width:var(--container); margin:0 auto; padding:0 24px; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}

/* ---------- texture ---------- */
.grain-bg{
  background-image:
    radial-gradient(ellipse 900px 500px at 15% -10%, rgba(216,169,75,0.10), transparent 60%),
    radial-gradient(ellipse 700px 500px at 110% 10%, rgba(216,169,75,0.06), transparent 60%);
}

/* ---------- eyebrow / labels ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:0.72rem; font-weight:700; letter-spacing:0.16em; text-transform:uppercase;
  color:var(--gold);
}
.eyebrow::before{
  content:""; width:14px; height:2px; background:var(--gold); display:inline-block;
}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 26px; border-radius:999px; font-weight:700; font-size:0.92rem;
  border:1px solid transparent; cursor:pointer; transition:transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space:nowrap;
}
.btn:active{ transform:translateY(1px); }
.btn-gold{
  background:linear-gradient(135deg, var(--gold-bright), var(--gold) 55%, var(--gold-deep));
  color:#181205;
  box-shadow:0 8px 24px -8px rgba(216,169,75,0.55);
}
.btn-gold:hover{ box-shadow:0 10px 30px -6px rgba(216,169,75,0.7); }
.btn-outline{
  background:transparent; color:var(--white); border-color:rgba(247,245,240,0.35);
}
.btn-outline:hover{ border-color:var(--gold); color:var(--gold-bright); }
.btn-ghost{
  background:var(--panel-2); color:var(--white); border-color:var(--line);
}
.btn-ghost:hover{ border-color:var(--line-strong); }
.btn-block{ width:100%; }
.btn-sm{ padding:10px 18px; font-size:0.82rem; }

/* ---------- nav ---------- */
.site-header{
  position:sticky; top:0; z-index:100;
  border-bottom:1px solid var(--line);
}
/* blur lives on a pseudo-layer, not on .site-header itself — backdrop-filter
   on the header would create a CSS containing block that traps the mobile
   nav's position:fixed overlay inside the header's own (76px-tall) box. */
.site-header::before{
  content:""; position:absolute; inset:0; z-index:-1;
  background:rgba(10,10,12,0.86);
  backdrop-filter:blur(10px);
}
.nav-row{
  display:flex; align-items:center; justify-content:space-between;
  height:76px;
}
.brand-logo{ height:38px; width:auto; }
.nav-links{ display:flex; align-items:center; gap:30px; }
.nav-links a{
  font-size:0.88rem; font-weight:600; color:var(--muted);
  transition:color .15s ease; position:relative;
}
.nav-links a:hover, .nav-links a.active{ color:var(--white); }
.nav-links a.active::after{
  content:""; position:absolute; left:0; right:0; bottom:-22px; height:2px; background:var(--gold);
}
.nav-cta{ display:flex; align-items:center; gap:12px; }
.nav-toggle{
  display:none; background:none; border:none; color:var(--white); font-size:1.6rem; padding:4px;
}
@media (max-width: 980px){
  .nav-links{
    position:fixed; inset:76px 0 0 0; background:var(--bg); flex-direction:column;
    padding:30px 24px; gap:22px; transform:translateX(100%); transition:transform .25s ease;
    overflow-y:auto; border-top:1px solid var(--line);
  }
  .nav-links.open{ transform:translateX(0); }
  .nav-links a{ font-size:1.1rem; }
  .nav-toggle{ display:block; }
  .nav-cta .btn-outline{ display:none; }
}

/* ---------- hero ---------- */
.hero{ position:relative; overflow:hidden; padding:64px 0 80px; }
.hero-grid{
  display:grid; grid-template-columns:1.05fr 0.95fr; gap:56px; align-items:center;
}
@media (max-width: 980px){ .hero-grid{ grid-template-columns:1fr; gap:36px; } }
.hero h1{ font-size:clamp(2.4rem, 5vw, 3.8rem); font-weight:800; }
.hero h1 .accent{ color:var(--gold-bright); }
.hero-sub{ color:var(--muted); font-size:1.08rem; max-width:520px; margin-top:18px; }
.hero-actions{ display:flex; gap:14px; margin-top:32px; flex-wrap:wrap; }
.hero-stats{ display:flex; gap:34px; margin-top:44px; flex-wrap:wrap; }
.hero-stat b{ display:block; font-family:var(--font-display); font-size:1.6rem; color:var(--gold-bright); }
.hero-stat span{ font-size:0.78rem; color:var(--muted); letter-spacing:0.03em; }
.hero-visual{ position:relative; border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--line-strong); box-shadow:0 30px 70px -30px rgba(0,0,0,0.8); }
.hero-visual img{ width:100%; }

/* ---------- motto strip ---------- */
.motto-strip{
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  padding:18px 0; background:var(--bg-soft);
}
.motto-row{ display:flex; justify-content:center; gap:14px; flex-wrap:wrap; text-align:center; }
.motto-row span{ font-family:var(--font-display); font-weight:700; letter-spacing:0.04em; font-size:0.95rem; color:var(--muted); }
.motto-row span.gold{ color:var(--gold-bright); }
.motto-row i{ color:var(--muted-2); font-style:normal; }

/* ---------- sections ---------- */
section{ padding:84px 0; }
.section-head{ max-width:680px; margin-bottom:44px; }
.section-head h2{ font-size:clamp(1.8rem,3vw,2.5rem); margin-top:12px; }
.section-head p{ color:var(--muted); margin-top:14px; font-size:1.02rem; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

.divider{ height:1px; background:var(--line); border:none; margin:0; }

/* ---------- cards ---------- */
.card{
  background:var(--panel); border:1px solid var(--line); border-radius:var(--radius-md);
  padding:28px;
}
.card:hover{ border-color:var(--line-strong); }

.feature-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
@media (max-width:980px){ .feature-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .feature-grid{ grid-template-columns:1fr; } }
.feature-card{ text-align:left; }
.feature-icon{
  width:44px; height:44px; border-radius:12px; background:var(--gold-wash);
  display:flex; align-items:center; justify-content:center; color:var(--gold-bright); font-size:1.3rem; margin-bottom:16px;
}
.feature-card h3{ font-size:1.05rem; margin-bottom:8px; }
.feature-card p{ color:var(--muted); font-size:0.92rem; }

/* ---------- live channel strip ---------- */
.live-strip{ display:grid; grid-template-columns:repeat(6,1fr); gap:16px; }
@media (max-width:980px){ .live-strip{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:560px){ .live-strip{ grid-template-columns:repeat(2,1fr); } }
.live-card{
  background:var(--panel); border:1px solid var(--line); border-radius:var(--radius-md);
  padding:16px; text-align:center; transition:border-color .15s ease, transform .15s ease;
}
.live-card:hover{ border-color:var(--gold); transform:translateY(-3px); }
.live-badge{
  display:inline-block; background:var(--red); color:#fff; font-size:0.62rem; font-weight:800;
  letter-spacing:0.08em; padding:3px 8px; border-radius:4px; margin-bottom:10px;
}
.upcoming-badge{
  display:inline-block; background:var(--gold-wash); color:var(--gold-bright); font-size:0.62rem; font-weight:800;
  letter-spacing:0.08em; padding:3px 8px; border-radius:4px; margin-bottom:10px; border:1px solid var(--line-strong);
}
.live-card img{ height:44px; width:auto; max-width:100%; margin:0 auto 12px; object-fit:contain; }
.live-card .ch-name{ font-weight:700; font-size:0.86rem; }
.live-card .ch-cat{ color:var(--muted-2); font-size:0.72rem; margin-top:2px; }

/* ---------- channel guide (channels.html) ---------- */
.filter-bar{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:36px; }
.chip{
  padding:9px 18px; border-radius:999px; border:1px solid var(--line-strong); background:var(--panel);
  color:var(--muted); font-size:0.82rem; font-weight:600; transition:all .15s ease;
}
.chip:hover{ color:var(--white); }
.chip.active{ background:var(--gold); color:#181205; border-color:var(--gold); }
.channel-grid{ display:grid; grid-template-columns:repeat(6,1fr); gap:16px; }
@media (max-width:1080px){ .channel-grid{ grid-template-columns:repeat(4,1fr); } }
@media (max-width:720px){ .channel-grid{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:480px){ .channel-grid{ grid-template-columns:repeat(2,1fr); } }
.channel-search{
  display:flex; gap:12px; margin-bottom:24px; flex-wrap:wrap; align-items:center;
}
.channel-search input{
  flex:1; min-width:220px; background:var(--panel); border:1px solid var(--line-strong); color:var(--white);
  padding:13px 18px; border-radius:999px;
}
.channel-search input::placeholder{ color:var(--muted-2); }
.result-count{ color:var(--muted); font-size:0.85rem; margin-bottom:18px; }
.empty-state{ text-align:center; padding:60px 20px; color:var(--muted); }

/* ---------- stat band ---------- */
.stat-band{ background:var(--panel); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.stat-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center; padding:52px 0; }
@media (max-width:768px){ .stat-grid{ grid-template-columns:repeat(2,1fr); } }
.stat-grid b{ display:block; font-family:var(--font-display); font-size:2.3rem; color:var(--gold-bright); }
.stat-grid span{ color:var(--muted); font-size:0.85rem; }

/* ---------- audience / funnel entry cards ---------- */
.audience-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
@media (max-width:900px){ .audience-grid{ grid-template-columns:1fr; } }
.audience-card{
  background:linear-gradient(180deg, var(--panel), var(--bg-soft));
  border:1px solid var(--line); border-radius:var(--radius-lg); padding:34px;
  display:flex; flex-direction:column; height:100%;
}
.audience-card .num{ font-family:var(--font-display); font-size:0.85rem; color:var(--gold); letter-spacing:0.1em; }
.audience-card h3{ font-size:1.35rem; margin:14px 0 10px; }
.audience-card p{ color:var(--muted); font-size:0.94rem; flex-grow:1; }
.audience-card ul{ margin:18px 0; display:flex; flex-direction:column; gap:8px; }
.audience-card li{ font-size:0.88rem; color:var(--muted); display:flex; gap:10px; align-items:flex-start; }
.audience-card li::before{ content:"✓"; color:var(--gold); font-weight:800; flex-shrink:0; }
.audience-card .btn{ margin-top:12px; }

/* ---------- steps ---------- */
.steps{ counter-reset:step; display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
@media (max-width:900px){ .steps{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .steps{ grid-template-columns:1fr; } }
.step{ position:relative; padding-top:8px; }
.step .step-num{
  font-family:var(--font-display); font-size:2.4rem; font-weight:800;
  color:transparent; -webkit-text-stroke:1.4px var(--gold); margin-bottom:14px; display:block;
}
.step h4{ font-size:1.02rem; margin-bottom:8px; }
.step p{ color:var(--muted); font-size:0.88rem; }

/* ---------- pricing / package cards ---------- */
.pkg-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
@media (max-width:900px){ .pkg-grid{ grid-template-columns:1fr; } }
.pkg-card{
  background:var(--panel); border:1px solid var(--line); border-radius:var(--radius-lg); padding:32px;
  display:flex; flex-direction:column;
}
.pkg-card.featured{ border-color:var(--gold); box-shadow:0 20px 50px -25px rgba(216,169,75,0.5); position:relative; }
.pkg-card.featured::before{
  content:"MOST POPULAR"; position:absolute; top:-13px; left:32px; background:var(--gold); color:#181205;
  font-size:0.65rem; font-weight:800; letter-spacing:0.08em; padding:5px 12px; border-radius:999px;
}
.pkg-card h3{ font-size:1.2rem; }
.pkg-card .price{ font-family:var(--font-display); font-size:1.7rem; color:var(--gold-bright); margin:12px 0; }
.pkg-card .price span{ font-size:0.85rem; color:var(--muted); font-family:var(--font-body); }
.pkg-card p.desc{ color:var(--muted); font-size:0.88rem; margin-bottom:18px; }
.pkg-card ul{ display:flex; flex-direction:column; gap:10px; margin-bottom:26px; flex-grow:1; }
.pkg-card li{ font-size:0.87rem; color:var(--white); display:flex; gap:10px; align-items:flex-start; }
.pkg-card li::before{ content:"✓"; color:var(--gold); font-weight:800; flex-shrink:0; }

/* ---------- forms ---------- */
.form-shell{
  background:var(--panel); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:38px; max-width:760px;
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
@media (max-width:640px){ .form-row{ grid-template-columns:1fr; } }
.field{ margin-bottom:20px; }
.field label{ display:block; font-size:0.82rem; font-weight:600; color:var(--muted); margin-bottom:8px; }
.field .req{ color:var(--gold); }
.field input, .field select, .field textarea{
  width:100%; background:var(--bg-soft); border:1px solid var(--line-strong); color:var(--white);
  padding:13px 16px; border-radius:var(--radius-sm); transition:border-color .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color:var(--gold); }
.field textarea{ resize:vertical; min-height:110px; }
.field-hint{ font-size:0.76rem; color:var(--muted-2); margin-top:6px; }
.radio-group{ display:flex; gap:10px; flex-wrap:wrap; }
.radio-pill{
  border:1px solid var(--line-strong); border-radius:999px; padding:10px 16px; font-size:0.84rem; color:var(--muted);
  cursor:pointer; transition:all .15s ease;
}
.radio-pill input{ display:none; }
.radio-pill.checked{ background:var(--gold-wash); border-color:var(--gold); color:var(--gold-bright); }
.form-success{
  display:none; text-align:center; padding:50px 20px;
}
.form-success.show{ display:block; }
.form-success .icon{ font-size:2.6rem; color:var(--gold); margin-bottom:16px; }
.form-note{ font-size:0.78rem; color:var(--muted-2); margin-top:14px; line-height:1.6; }

/* ---------- tabs (join.html) ---------- */
.tab-bar{ display:flex; gap:8px; margin-bottom:34px; flex-wrap:wrap; border-bottom:1px solid var(--line); }
.tab-btn{
  background:none; border:none; color:var(--muted); font-weight:700; font-size:0.92rem;
  padding:14px 6px; margin-right:26px; position:relative; border-bottom:2px solid transparent;
}
.tab-btn.active{ color:var(--white); border-color:var(--gold); }
.tab-panel{ display:none; }
.tab-panel.active{ display:block; }

/* ---------- influencer / logos strip ---------- */
.logo-marquee{ overflow:hidden; position:relative; }
.logo-marquee .track{ display:flex; gap:16px; width:max-content; animation:scroll-x 40s linear infinite; }
@keyframes scroll-x{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
.logo-marquee:hover .track{ animation-play-state:paused; }

/* ---------- testimonial / quote ---------- */
.quote-block{
  border-left:3px solid var(--gold); padding-left:26px; max-width:760px;
}
.quote-block p{ font-family:var(--font-display); font-size:1.4rem; font-weight:600; }
.quote-block cite{ display:block; margin-top:14px; color:var(--muted); font-style:normal; font-size:0.85rem; }

/* ---------- CTA band ---------- */
.cta-band{
  background:linear-gradient(120deg, #1c1710, #100d09 60%);
  border:1px solid var(--line-strong); border-radius:var(--radius-lg);
  padding:56px; text-align:center;
}
.cta-band h2{ font-size:clamp(1.6rem,3vw,2.2rem); }
.cta-band p{ color:var(--muted); margin-top:12px; }
.cta-band .hero-actions{ justify-content:center; margin-top:26px; }

/* ---------- footer ---------- */
.site-footer{ border-top:1px solid var(--line); background:var(--bg-soft); padding:60px 0 30px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; }
@media (max-width:860px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-grid h5{ font-size:0.8rem; letter-spacing:0.08em; text-transform:uppercase; color:var(--gold); margin-bottom:16px; }
.footer-grid li{ margin-bottom:10px; }
.footer-grid a{ color:var(--muted); font-size:0.88rem; }
.footer-grid a:hover{ color:var(--white); }
.footer-bottom{
  margin-top:50px; padding-top:24px; border-top:1px solid var(--line);
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px;
}
.footer-bottom p{ color:var(--muted-2); font-size:0.78rem; }
.social-row{ display:flex; gap:14px; }
.social-row a{
  width:36px; height:36px; border-radius:50%; border:1px solid var(--line-strong);
  display:flex; align-items:center; justify-content:center; color:var(--muted); font-size:0.95rem;
  transition:all .15s ease;
}
.social-row a:hover{ border-color:var(--gold); color:var(--gold-bright); }
.built-by{ color:var(--muted-2); font-size:0.76rem; }
.built-by a{ color:var(--gold); }

/* ---------- legal pages ---------- */
.legal-body h2{ font-size:1.3rem; margin-top:40px; margin-bottom:14px; color:var(--gold-bright); }
.legal-body h2:first-child{ margin-top:0; }
.legal-body p, .legal-body li{ color:var(--muted); font-size:0.94rem; margin-bottom:12px; }
.legal-body ul{ padding-left:22px; list-style:disc; }
.legal-body strong{ color:var(--white); }
.legal-updated{ color:var(--muted-2); font-size:0.82rem; margin-top:8px; }

/* ---------- utility ---------- */
.mt-0{ margin-top:0; }
.text-center{ text-align:center; }
.badge-row{ display:flex; gap:10px; flex-wrap:wrap; }
.pill{
  border:1px solid var(--line-strong); border-radius:999px; padding:6px 14px; font-size:0.76rem; color:var(--muted);
}
.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
@media (max-width:900px){ .two-col{ grid-template-columns:1fr; gap:32px; } }
.img-frame{ border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--line-strong); }
.page-hero{ padding:56px 0 20px; }
.page-hero h1{ font-size:clamp(2rem,4vw,2.8rem); }
.page-hero p{ color:var(--muted); max-width:640px; margin-top:14px; font-size:1.02rem; }
.small-caps{ text-transform:uppercase; letter-spacing:0.08em; font-size:0.72rem; color:var(--muted-2); font-weight:700; }

.toast{
  position:fixed; bottom:24px; right:24px; background:var(--panel-2); border:1px solid var(--gold);
  color:var(--white); padding:16px 22px; border-radius:var(--radius-md); z-index:999;
  box-shadow:0 20px 40px -15px rgba(0,0,0,0.6); max-width:320px; font-size:0.88rem;
  transform:translateY(20px); opacity:0; pointer-events:none; transition:all .25s ease;
}
.toast.show{ transform:translateY(0); opacity:1; }
