/* Overhead — Loud Clarity web styles */
:root {
  --navy: #05101D;
  --panel: #071627;
  --panel-2: #0A1C31;
  --ink: #030B14;
  --red: #C8121F;
  --red-dark: #A50F1A;
  --red-deep: #8C0A14;
  --gold: #FFD21A;
  --gold-soft: #FFE680;
  --cream: #FBF4E6;
  --black: #160406;
  --line: rgba(251, 244, 230, .12);
  --line-soft: rgba(251, 244, 230, .08);
  --muted: rgba(251, 244, 230, .62);
  --muted-2: rgba(251, 244, 230, .5);
  --display: 'Big Shoulders Display', sans-serif;
  --body: 'Outfit', sans-serif;
  --mono: ui-monospace, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-soft); }
img { max-width: 100%; }
::selection { background: var(--red); color: var(--cream); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(5, 16, 29, .88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 32px;
  height: 72px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { width: 34px; height: 34px; border-radius: 50%; display: block; }
.nav-brand span {
  font-family: var(--display); font-weight: 800; font-size: 23px;
  letter-spacing: .1em; color: var(--cream);
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-size: 13.5px; font-weight: 600; letter-spacing: .04em;
  color: rgba(251, 244, 230, .75);
}
.nav-link:hover { color: var(--gold-soft); }
.nav-link.active { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn-red {
  background: var(--red); color: var(--cream);
  font-weight: 700; font-size: 13px; letter-spacing: .05em;
  padding: 11px 20px; border-radius: 8px;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-red:hover { background: var(--red-deep); color: var(--cream); }
.btn-red.lg { font-weight: 800; font-size: 13.5px; padding: 14px 24px; }
.btn-gold {
  background: var(--gold); color: var(--black);
  font-weight: 800; font-size: 14px; letter-spacing: .04em;
  padding: 15px 26px; border-radius: 8px; display: inline-block;
}
.btn-gold:hover { background: var(--gold-soft); color: var(--black); }
.btn-ghost {
  border: 1px solid rgba(251, 244, 230, .25); color: var(--cream);
  font-weight: 600; font-size: 14px; letter-spacing: .04em;
  padding: 15px 26px; border-radius: 8px; display: inline-block; cursor: pointer;
  background: transparent; font-family: var(--body);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Type ---------- */
.kicker {
  font-size: 12px; font-weight: 700; letter-spacing: .24em;
  color: var(--gold); margin-bottom: 18px;
}
.h1 {
  margin: 0; font-family: var(--display); font-weight: 900;
  text-transform: uppercase; line-height: .88; color: var(--cream);
}
.h2 {
  margin: 0; font-family: var(--display); font-weight: 800;
  text-transform: uppercase; line-height: .95; color: var(--cream);
}
.lede { font-size: 16px; line-height: 1.65; color: rgba(251, 244, 230, .65); }

/* ---------- Hero ---------- */
.hero {
  background-color: var(--navy);
  background-image:
    radial-gradient(1100px 560px at 50% -8%, rgba(14, 39, 64, .9) 0%, rgba(14, 39, 64, 0) 62%),
    repeating-linear-gradient(0deg, rgba(251, 244, 230, .028) 0px, rgba(251, 244, 230, .028) 1px, transparent 1px, transparent 64px),
    repeating-linear-gradient(90deg, rgba(251, 244, 230, .028) 0px, rgba(251, 244, 230, .028) 1px, transparent 1px, transparent 64px);
  border-bottom: 1px solid var(--line-soft);
}
.hero-inner { padding: 108px 0 84px; }
.badge-pill {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(255, 210, 26, .45); border-radius: 999px;
  padding: 7px 16px; margin-bottom: 34px;
}
.badge-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.badge-pill span:last-child {
  font-size: 11.5px; font-weight: 700; letter-spacing: .22em; color: var(--gold);
}
.hero-title { font-size: clamp(76px, 10.5vw, 164px); }
.hero-title .gold { color: var(--gold); text-shadow: 0 6px 0 rgba(0, 0, 0, .35); }
.hero-sub {
  max-width: 660px; margin: 36px 0 0; font-size: 17px;
  line-height: 1.65; color: rgba(251, 244, 230, .68);
}
.hero-ctas { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }

.page-hero {
  border-bottom: 1px solid var(--line-soft);
  background-image: radial-gradient(900px 420px at 50% -10%, rgba(14, 39, 64, .9) 0%, rgba(14, 39, 64, 0) 62%);
}
.page-hero-inner { padding: 90px 0 70px; }
.page-hero .h1 { font-size: clamp(56px, 8vw, 120px); }
.page-hero .gold { color: var(--gold); }
.page-hero .lede { max-width: 640px; margin: 30px 0 0; }

/* ---------- Stats ---------- */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(251, 244, 230, .1); border: 1px solid rgba(251, 244, 230, .1);
  border-radius: 12px; overflow: hidden; margin-top: 72px;
}
.stat-cell { background: var(--panel); padding: 26px 28px; }
.stat-num {
  font-family: var(--display); font-weight: 800; font-size: 52px;
  line-height: 1; color: var(--cream);
}
.stat-num.gold { color: var(--gold); }
.stat-num small { font-size: 30px; }
.stat-label {
  font-size: 11px; font-weight: 600; letter-spacing: .18em;
  color: rgba(251, 244, 230, .55); margin-top: 10px;
}

/* ---------- Sections ---------- */
.section { padding: 110px 0 40px; }
.section-lg { padding: 90px 0; }

/* ---------- Steps ---------- */
.step {
  display: grid; grid-template-columns: 130px 1fr 220px; gap: 32px;
  padding: 34px 0; border-top: 1px solid var(--line); align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step-num {
  font-family: var(--display); font-weight: 900; font-size: 64px;
  line-height: .9; color: rgba(251, 244, 230, .22);
}
.step-title {
  font-family: var(--display); font-weight: 800; font-size: 30px;
  letter-spacing: .04em; color: var(--cream); text-transform: uppercase;
  margin-bottom: 10px;
}
.step-desc { margin: 0; font-size: 15px; line-height: 1.65; color: var(--muted); max-width: 560px; }
.step-chip { justify-self: end; }
.chip {
  display: inline-block; border: 1px solid rgba(255, 210, 26, .4);
  color: var(--gold); font-size: 11px; font-weight: 700;
  letter-spacing: .14em; padding: 8px 14px; border-radius: 6px; white-space: nowrap;
}

/* ---------- Demo widget ---------- */
.demo-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: 40px;
}
.demo-head .h2 { font-size: clamp(40px, 5vw, 64px); }
.demo-head p { margin: 0; font-size: 14px; color: rgba(251, 244, 230, .55); max-width: 380px; line-height: 1.6; }
.demo-shell {
  display: grid; grid-template-columns: 380px 1fr; gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: 14px; overflow: hidden;
}
.clip-panel { background: var(--panel); padding: 22px 0; }
.clip-panel-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px 16px; border-bottom: 1px solid rgba(251, 244, 230, .1);
}
.clip-panel-head .label { font-size: 11px; font-weight: 700; letter-spacing: .18em; color: rgba(251, 244, 230, .55); }
.clip-panel-head .count { font-family: var(--mono); font-size: 11px; color: var(--gold); }
.clip {
  cursor: pointer; display: grid; grid-template-columns: 44px 1fr auto;
  gap: 12px; align-items: center; padding: 15px 24px;
  border-left: 3px solid transparent; background: transparent;
  width: 100%; border-top: 0; border-right: 0; border-bottom: 0;
  font-family: var(--body); text-align: left; color: inherit;
}
.clip:hover { background: rgba(251, 244, 230, .05); }
.clip.active { border-left-color: var(--gold); background: rgba(255, 210, 26, .07); }
.clip-num { font-family: var(--display); font-weight: 800; font-size: 26px; color: rgba(251, 244, 230, .3); }
.clip.active .clip-num { color: var(--gold); }
.clip-hook { font-size: 13.5px; font-weight: 600; color: var(--cream); line-height: 1.3; display: block; }
.clip-date { font-size: 11px; font-weight: 500; letter-spacing: .08em; color: rgba(251, 244, 230, .45); display: block; margin-top: 3px; }
.clip-state { font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: .08em; color: rgba(251, 244, 230, .3); }
.clip-state.queued { color: var(--gold); }

.sel-panel { background: var(--panel-2); padding: 28px; }
.sel-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-bottom: 22px;
}
.sel-hook {
  font-family: var(--display); font-weight: 800; font-size: 27px;
  text-transform: uppercase; color: var(--cream); line-height: 1;
}
.sel-meta { font-size: 12px; font-weight: 500; letter-spacing: .1em; color: var(--muted-2); margin-top: 8px; }
.queue-btn {
  cursor: pointer; background: var(--red); color: var(--cream);
  font-weight: 800; font-size: 12.5px; letter-spacing: .06em;
  padding: 13px 22px; border-radius: 8px; white-space: nowrap;
  border: 0; font-family: var(--body);
}
.queue-btn:hover { opacity: .9; }
.queue-btn.queued { background: rgba(255, 210, 26, .12); color: var(--gold); }

.platform-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.platform-card {
  border: 1px solid rgba(251, 244, 230, .14); border-radius: 10px;
  padding: 18px; display: flex; flex-direction: column; gap: 12px;
  background: rgba(5, 16, 29, .5);
}
.platform-card .head { display: flex; align-items: center; justify-content: space-between; }
.platform-card .name { font-size: 13px; font-weight: 700; letter-spacing: .06em; color: var(--cream); }
.platform-card .state { font-family: var(--mono); font-size: 10.5px; font-weight: 600; color: rgba(251, 244, 230, .35); }
.platform-card .state.queued { color: var(--gold); }
.platform-card .slot { font-family: var(--mono); font-size: 11px; color: var(--gold); }
.platform-card .headline { font-size: 12px; font-weight: 600; color: rgba(251, 244, 230, .85); line-height: 1.45; }
.platform-card .caption { margin: 0; font-size: 12px; line-height: 1.55; color: rgba(251, 244, 230, .55); flex: 1; }
.platform-card .tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag {
  font-size: 9.5px; font-weight: 600; letter-spacing: .08em;
  color: var(--muted-2); border: 1px solid rgba(251, 244, 230, .16);
  border-radius: 4px; padding: 4px 7px;
}
.demo-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; gap: 16px; flex-wrap: wrap; }
.demo-status { font-family: var(--mono); font-size: 11px; color: rgba(251, 244, 230, .4); }
.demo-reset {
  cursor: pointer; font-size: 11.5px; font-weight: 600;
  color: rgba(251, 244, 230, .45); letter-spacing: .06em;
  background: none; border: 0; font-family: var(--body);
}
.demo-reset:hover { color: var(--gold); }

/* ---------- Features band ---------- */
.features-band {
  background: var(--red);
  background-image: radial-gradient(900px 480px at 85% 0%, rgba(140, 10, 20, .85) 0%, rgba(140, 10, 20, 0) 60%);
  border-top: 1px solid rgba(0, 0, 0, .25);
  border-bottom: 1px solid rgba(0, 0, 0, .25);
}
.features-band-inner { padding: 100px 0; }
.features-band .h2 { font-size: clamp(40px, 5vw, 64px); max-width: 720px; margin-bottom: 56px; }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(251, 244, 230, .2); border: 1px solid rgba(251, 244, 230, .2);
  border-radius: 12px; overflow: hidden;
}
.feature-cell { background: var(--red-dark); padding: 30px 28px; }
.feature-cell h3 {
  margin: 0 0 12px; font-family: var(--display); font-weight: 900;
  font-size: 20px; letter-spacing: .06em; color: var(--gold);
}
.feature-cell p { margin: 0; font-size: 14px; line-height: 1.6; color: rgba(251, 244, 230, .8); }

/* ---------- Episode cards ---------- */
.eps-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: 48px;
}
.eps-head .h2 { font-size: clamp(40px, 5vw, 64px); }
.eps-link { font-size: 13.5px; font-weight: 700; letter-spacing: .08em; }
.eps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ep-card { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--panel); }
.ep-card > img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.ep-card-body { padding: 26px 28px; }
.ep-badges { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.badge-live {
  background: var(--gold); color: var(--black); font-size: 10.5px;
  font-weight: 800; letter-spacing: .12em; padding: 5px 10px; border-radius: 4px;
}
.badge-kit {
  border: 1px solid var(--gold); color: var(--gold); font-size: 10.5px;
  font-weight: 800; letter-spacing: .12em; padding: 4px 10px; border-radius: 4px;
}
.ep-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .14em; color: var(--muted-2); }
.ep-title {
  font-family: var(--display); font-weight: 800; font-size: 32px;
  text-transform: uppercase; color: var(--cream); line-height: 1;
}
.ep-desc { margin: 12px 0 0; font-size: 14px; line-height: 1.6; color: rgba(251, 244, 230, .6); }

/* ---------- Pipeline page ---------- */
.slot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.slot-card { border: 1px solid var(--line); border-radius: 12px; padding: 26px; background: var(--panel); }
.slot-card .plat { font-size: 12px; font-weight: 700; letter-spacing: .1em; color: rgba(251, 244, 230, .6); margin-bottom: 16px; }
.slot-card .time { font-family: var(--display); font-weight: 800; font-size: 46px; color: var(--cream); line-height: 1; }
.slot-card .time small { font-size: 22px; color: var(--muted-2); font-weight: 800; }
.slot-card .utc { font-family: var(--mono); font-size: 11px; color: var(--gold); margin-top: 8px; }
.slot-card p { margin: 16px 0 0; font-size: 13px; line-height: 1.6; color: rgba(251, 244, 230, .55); }

.log {
  background: var(--ink); border: 1px solid var(--line); border-radius: 12px;
  padding: 28px 30px; font-family: var(--mono); font-size: 13px;
  line-height: 2.1; overflow-x: auto;
}
.log .p { color: rgba(251, 244, 230, .35); }
.log .c { color: var(--cream); }
.log .d { color: rgba(251, 244, 230, .45); }
.log .g { color: var(--gold); }
.log .m { color: rgba(251, 244, 230, .55); }

.sched { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.sched-row {
  display: grid; grid-template-columns: 110px 1fr 120px 120px 120px;
  padding: 13px 22px; border-bottom: 1px solid rgba(251, 244, 230, .07);
  align-items: baseline;
}
.sched-row:nth-child(even) { background: rgba(251, 244, 230, .02); }
.sched-row:last-child { border-bottom: 0; }
.sched-head {
  background: var(--panel-2); padding: 14px 22px;
  border-bottom: 1px solid var(--line);
}
.sched-head span { font-size: 10.5px; font-weight: 700; letter-spacing: .14em; color: var(--muted-2); }
.sched-date { font-family: var(--mono); font-size: 11.5px; color: rgba(251, 244, 230, .55); }
.sched-name { font-size: 13.5px; font-weight: 500; color: rgba(251, 244, 230, .85); }
.sched-time { font-family: var(--mono); font-size: 11.5px; color: rgba(251, 244, 230, .55); text-align: right; }
.sched-time.peak { color: var(--gold); }
.sched-head .sched-time { color: var(--muted-2); }
.footnote { margin: 16px 0 0; font-size: 12.5px; color: rgba(251, 244, 230, .45); }

/* ---------- Episodes page ---------- */
.ep-detail { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: start; }
.ep-detail.flip { grid-template-columns: .95fr 1.05fr; }
.ep-detail .h2 { font-size: clamp(36px, 4vw, 54px); margin-bottom: 18px; }
.ep-detail .lede { font-size: 15px; color: var(--muted); margin: 0 0 26px; }
.big-img { width: 100%; border-radius: 12px; border: 1px solid rgba(251, 244, 230, .14); display: block; }
.thumb-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 12px; }
.thumb-row.two { grid-template-columns: 1fr 1fr; }
.thumb-row img { width: 100%; border-radius: 8px; border: 1px solid var(--line); display: block; }
.mini-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: rgba(251, 244, 230, .1); border: 1px solid rgba(251, 244, 230, .1);
  border-radius: 10px; overflow: hidden; margin-bottom: 26px;
}
.mini-stat { background: var(--panel); padding: 18px 20px; }
.mini-stat .num { font-family: var(--display); font-weight: 800; font-size: 32px; color: var(--cream); line-height: 1; }
.mini-stat .num.gold { color: var(--gold); }
.mini-stat .lbl { font-size: 10.5px; font-weight: 600; letter-spacing: .14em; color: var(--muted-2); margin-top: 6px; }

.next-box {
  border: 1px dashed rgba(255, 210, 26, .4); border-radius: 14px;
  padding: 44px 40px; display: flex; align-items: center;
  justify-content: space-between; gap: 28px; flex-wrap: wrap;
}
.next-box .titles {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(30px, 3.6vw, 44px); text-transform: uppercase;
  color: var(--cream); line-height: 1;
}

/* ---------- Footer ---------- */
.footer { border-top: 1px solid rgba(251, 244, 230, .1); background: var(--ink); }
.case-study {
  display: grid; grid-template-columns: 1fr 1fr; gap: 44px;
  padding: 70px 0 64px; border-bottom: 1px solid var(--line-soft);
}
.case-study .title {
  font-family: var(--display); font-weight: 800; font-size: 34px;
  text-transform: uppercase; color: var(--cream); line-height: 1;
}
.case-study p { margin: 0 0 20px; font-size: 14.5px; line-height: 1.7; color: var(--muted); }
.stack { display: flex; flex-wrap: wrap; gap: 8px; }
.stack span {
  font-family: var(--mono); font-size: 11px; color: rgba(251, 244, 230, .65);
  border: 1px solid rgba(251, 244, 230, .16); border-radius: 5px; padding: 6px 10px;
}
.footer-bar {
  padding: 34px 0 40px; display: flex; align-items: center;
  justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { width: 24px; height: 24px; border-radius: 6px; display: block; }
.footer-brand .name { font-family: var(--display); font-weight: 800; font-size: 17px; letter-spacing: .1em; color: var(--cream); }
.footer-brand .tag-line { font-size: 12px; color: rgba(251, 244, 230, .4); margin-left: 6px; }
.footer-links { display: flex; align-items: center; gap: 22px; }
.footer-links a { font-size: 12.5px; font-weight: 600; color: rgba(251, 244, 230, .6); }
.footer-links a:hover { color: var(--gold); }
.footer-links .handle { font-family: var(--mono); font-size: 11px; color: rgba(251, 244, 230, .35); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .stats-grid, .platform-grid, .features-grid, .slot-grid { grid-template-columns: 1fr 1fr; }
  .demo-shell { grid-template-columns: 1fr; }
  .ep-detail, .ep-detail.flip, .eps-grid, .case-study { grid-template-columns: 1fr; }
  .step { grid-template-columns: 80px 1fr; }
  .step-chip { grid-column: 2; justify-self: start; }
}
@media (max-width: 640px) {
  .container, .nav-inner { padding-left: 20px; padding-right: 20px; }
  .stats-grid, .platform-grid, .features-grid, .slot-grid { grid-template-columns: 1fr; }
  .nav-links { gap: 16px; }
  .nav-links .btn-red { display: none; }
  .sched-row, .sched-head { grid-template-columns: 90px 1fr 70px 70px 70px; padding: 12px 14px; }
  .sched-name { font-size: 12px; }
}
