/* ═══════════════════════════════════════════════════════
   JANICA MEDIA — Brand Design System v4
   Gold extracted from logo: #ba8736
   Dark extracted from logo: #0d1014
   ═══════════════════════════════════════════════════════ */

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

:root {
  /* — Backgrounds (matched to logo dark) — */
  --bg:           #0b0e12;
  --panel:        #0f1318;
  --panel2:       #141920;
  --panel3:       #1a2030;

  /* — Gold System (extracted from logo) — */
  --gold:         #ba8736;
  --gold-bright:  #d4a04e;
  --gold-dim:     #8a6228;
  --gold-glow:    rgba(186,135,54,.12);
  --gold-line:    rgba(186,135,54,.20);
  --gold-line2:   rgba(186,135,54,.08);

  /* — Accent — */
  --red:          #9e1218;
  --red-bright:   #c01520;
  --green:        #3a9e58;

  /* — Typography — */
  --white:        #f5f2ee;
  --text:         #b8bec8;
  --muted:        #68737f;
  --subtle:       #343d48;

  /* — Utility — */
  --radius:       10px;
  --shadow:       0 16px 40px rgba(0,0,0,.5);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 15px; }
body {
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 40% at 20% 0%, rgba(20,25,32,.95) 0%, transparent 70%),
    radial-gradient(ellipse 60% 30% at 80% 100%, rgba(15,19,24,.9) 0%, transparent 60%);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── TYPOGRAPHY — strict weight ladder ── */
h1 { font-size: clamp(30px,5vw,54px); font-weight: 800; line-height: 1.08; color: var(--white); }
h2 { font-size: clamp(22px,3.5vw,40px); font-weight: 700; line-height: 1.15; color: var(--white); }
h3 { font-size: clamp(15px,2vw,20px); font-weight: 600; line-height: 1.25; color: var(--white); }
h4 { font-size: 14px; font-weight: 600; line-height: 1.3; color: var(--white); }
p  { font-weight: 400; color: var(--text); line-height: 1.7; }
strong, b { font-weight: 600; }

.kicker {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: var(--gold);
  margin-bottom: 10px;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 600;
  background: rgba(11,14,18,.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--gold-line);
}
.nav-inner {
  max-width: 1440px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  height: 66px;
  gap: 24px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 46px; width: auto; }
.links {
  display: flex;
  gap: 26px;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .3px;
  transition: color .18s;
  white-space: nowrap;
}
.links a:hover { color: var(--white); }
.live-badge {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--white);
  flex-shrink: 0;
  white-space: nowrap;
}
.live-badge b {
  background: var(--red-bright);
  color: #fff;
  padding: 4px 9px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1.5px;
  margin-right: 6px;
}

/* ── LAYOUT ── */
.container { max-width: 1440px; margin: auto; padding: 28px; }

/* ── PANELS ── */
.panel {
  background: linear-gradient(145deg, var(--panel2), var(--panel));
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 20px;
  margin-top: 24px;
}
.hero h2 {
  font-size: clamp(30px,4vw,52px);
  font-weight: 800;
  line-height: 1.06;
  margin: 8px 0 14px;
  color: var(--white);
}
.hero p { font-size: 15px; color: var(--text); margin-bottom: 22px; }

/* ── BUTTONS ── */
.btns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--gold-line);
  color: var(--gold-bright);
  transition: all .18s;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { border-color: var(--gold); background: var(--gold-glow); }
.btn.primary {
  background: var(--gold);
  color: #0b0e12;
  border-color: var(--gold);
  font-weight: 600;
}
.btn.primary:hover { background: var(--gold-bright); }

/* ── TICKER ── */
.ticker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--gold-line2);
  border-radius: 6px;
  padding: 9px 14px;
  font-size: 13px;
  color: var(--text);
  background: rgba(0,0,0,.25);
}
.ticker b {
  background: var(--red-bright);
  color: #fff;
  padding: 2px 8px;
  border-radius: 2px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  flex-shrink: 0;
}

/* ── IMAGES ── */
.asset-img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--gold-line2);
}

/* ── SECTIONS ── */
.section { margin-top: 48px; }
.section-title { text-align: center; margin-bottom: 28px; }
.section-title h2 { margin-bottom: 6px; }
.section-title p { color: var(--muted); font-size: 15px; }

/* ── STATS ── */
.stats { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.stat {
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  padding: 24px 14px;
  text-align: center;
  background: var(--panel);
}
.stat strong {
  font-size: 44px;
  font-weight: 800;
  color: var(--gold-bright);
  display: block;
  line-height: 1.1;
  letter-spacing: -1px;
}
.stat-label { font-size: 12px; color: var(--muted); font-weight: 400; margin-top: 5px; }

/* ── ANCHOR CARDS ── */
.grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.card {
  background: var(--panel);
  border: 1px solid var(--gold-line2);
  border-radius: var(--radius);
  padding: 18px;
  transition: border-color .2s, transform .2s;
}
.card:hover { border-color: var(--gold-dim); transform: translateY(-2px); }
.card h3 { font-size: 16px; font-weight: 600; margin-bottom: 3px; color: var(--white); }
.role {
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: .2px;
}
.card p { font-size: 13px; color: var(--muted); font-weight: 400; line-height: 1.55; }
.show-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── PROGRAM CARDS ── */
.programs { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.program {
  background: var(--panel);
  border: 1px solid var(--gold-line2);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 20px;
  transition: border-color .2s;
}
.program:hover { border-left-color: var(--gold-bright); }
.program h3 { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.program .anchor-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: .2px;
}
.program p { font-size: 13px; color: var(--muted); font-weight: 400; line-height: 1.55; }

/* ── SCHEDULE TABLE ── */
.schedule {
  width: 100%;
  border-collapse: collapse;
  background: var(--panel);
  border: 1px solid var(--gold-line2);
  border-radius: var(--radius);
  overflow: hidden;
}
.schedule th {
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--gold-line);
  text-align: left;
  background: var(--panel2);
}
.schedule td {
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  border-bottom: 1px solid var(--gold-line2);
}
.schedule tr:last-child td { border-bottom: none; }
.schedule tr:hover td { background: var(--gold-glow); }
.time-cell { color: var(--gold); font-weight: 600; font-size: 13px; }
.program-cell { color: var(--white); font-weight: 500; }

/* ── FOOTER ── */
.footer {
  margin-top: 56px;
  border-top: 1px solid var(--gold-line2);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid { grid-template-columns: repeat(2,1fr); }
  .programs { grid-template-columns: repeat(2,1fr); }
  .stats { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .programs { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .links { display: none; }
  .nav-inner { padding: 0 16px; }
  .container { padding: 16px; }
}
