:root {
  --red: #b40018;
  --red-2: #e31b2f;
  --red-dark: #78000f;
  --red-soft: #fff0f2;
  --ink: #17171a;
  --muted: #6f7278;
  --line: #e9e9ec;
  --surface: #ffffff;
  --surface-2: #f7f7f9;
  --shadow: 0 18px 45px rgba(18, 18, 22, .09);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 2%, rgba(180, 0, 24, .08), transparent 28rem),
    #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.top-line {
  height: 5px;
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-2));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-slot,
.footer-logo-slot {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px dashed #c7c7cc;
  border-radius: 16px;
  background: #fff;
  color: #9a9aa1;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  overflow: hidden;
}

.logo-slot img,
.footer-logo-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text strong {
  font-size: 19px;
  line-height: 1.1;
}

.brand-text small {
  color: var(--muted);
  font-size: 12px;
}

.eyebrow,
.section-kicker,
.label {
  font-size: 11px;
  line-height: 1;
  letter-spacing: .14em;
  font-weight: 900;
  color: var(--red);
}

.header-status {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid #efc3c9;
  border-radius: 999px;
  color: var(--red-dark);
  background: #fff8f9;
  font-weight: 800;
  font-size: 13px;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red-2);
  box-shadow: 0 0 0 5px rgba(227, 27, 47, .10);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 9px rgba(227, 27, 47, 0); }
}

.hero {
  position: relative;
  padding: 76px 0 62px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  top: -180px;
  right: -100px;
  background: rgba(180, 0, 24, .05);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 48px;
  align-items: center;
}

.pill {
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}

.hero-copy h1 {
  margin: 18px 0 18px;
  max-width: 720px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: .98;
  letter-spacing: -.05em;
}

.hero-copy h1 span {
  color: var(--red);
}

.hero-copy p {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  font-weight: 800;
  font-size: 14px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-2));
  box-shadow: 0 14px 30px rgba(180, 0, 24, .22);
}

.btn-light {
  background: #fff;
  border: 1px solid var(--line);
}

.clock-card {
  background: #121215;
  color: #fff;
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .18);
}

.clock-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.clock-card-top p {
  margin: 7px 0 0;
  color: #b9b9bf;
  font-size: 13px;
}

.clock-icon {
  color: #ff3047;
  font-size: 23px;
  text-shadow: 0 0 18px rgba(255, 48, 71, .8);
}

.clock {
  margin-top: 30px;
  font-size: clamp(48px, 7vw, 76px);
  line-height: 1;
  letter-spacing: -.05em;
  font-variant-numeric: tabular-nums;
  font-weight: 900;
}

.date {
  margin-top: 9px;
  color: #bfc0c6;
  text-transform: capitalize;
}

.on-air-box {
  margin-top: 28px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.055);
  border-radius: 19px;
}

.on-air-label {
  color: #ff5266;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}

.on-air-box h2 {
  margin: 9px 0 6px;
  font-size: 24px;
}

.on-air-box p {
  margin: 0;
  color: #c8c9cf;
  line-height: 1.55;
}

.progress-wrap {
  margin: 17px 0 9px;
  height: 6px;
  border-radius: 10px;
  background: rgba(255,255,255,.12);
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0;
  border-radius: 10px;
  background: linear-gradient(90deg, #ff2a43, #ff6677);
  transition: width .5s ease;
}

.on-air-box small {
  color: #989aa1;
}

.next-section,
.schedule-section,
.info-section {
  padding: 72px 0;
}

.next-section {
  background: var(--surface-2);
  border-top: 1px solid #eeeeef;
  border-bottom: 1px solid #eeeeef;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 7px 0 0;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -.035em;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.next-programs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.next-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 20px rgba(18,18,22,.035);
}

.next-card.primary {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(145deg, #8b0012, #c7001c);
  box-shadow: 0 18px 38px rgba(180,0,24,.17);
}

.next-order {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .09em;
}

.next-card.primary .next-order {
  color: #ffd6dc;
}

.time-chip {
  padding: 6px 8px;
  border-radius: 999px;
  background: #f5f5f7;
  color: #3d3d41;
}

.next-card.primary .time-chip {
  background: rgba(255,255,255,.13);
  color: #fff;
}

.next-card h3 {
  margin: 20px 0 8px;
  font-size: 21px;
  line-height: 1.15;
}

.next-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.next-card.primary p {
  color: #f4d8dc;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px dashed #d4d4d8;
  border-radius: 20px;
  background: #fff;
  color: var(--muted);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.day-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(18,18,22,.035);
}

.day-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 18px 20px;
  background: #fafafa;
  border-bottom: 1px solid var(--line);
}

.day-header h3 {
  margin: 0;
  font-size: 18px;
}

.day-count {
  font-size: 11px;
  font-weight: 800;
  color: var(--red);
}

.program-row {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid #f0f0f2;
}

.program-row:last-child {
  border-bottom: 0;
}

.program-time {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.program-info h4 {
  margin: 0 0 6px;
  font-size: 16px;
}

.program-info p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.official-section {
  padding: 12px 0 72px;
}

.official-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 30px;
  border-radius: 26px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(255,255,255,.12), transparent 18rem),
    linear-gradient(135deg, #73000f, #b40018 58%, #d5152a);
  box-shadow: 0 25px 55px rgba(123, 0, 17, .22);
}

.official-badge {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.16);
  font-size: 28px;
}

.section-kicker.white {
  color: #ffdbe0;
}

.official-copy h2 {
  margin: 7px 0 10px;
  font-size: 30px;
}

.official-copy p {
  margin: 0;
  max-width: 720px;
  color: #f8dfe3;
  line-height: 1.65;
}

.official-copy .official-warning {
  margin-top: 10px;
  color: #fff;
  font-weight: 600;
}

.license-box {
  min-width: 185px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  text-align: center;
}

.license-box span,
.license-box small {
  display: block;
}

.license-box span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}

.license-box strong {
  display: block;
  margin: 5px 0;
  color: var(--red);
  font-size: 28px;
}

.license-box small {
  color: #4f5055;
}

.info-section {
  padding-top: 0;
}

.info-grid {
  display: grid;
  grid-template-columns: 1.12fr .94fr .94fr;
  gap: 18px;
}

.info-card {
  border: 1px solid var(--line);
  border-radius: 23px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(18,18,22,.035);
}

.info-card h2 {
  margin: 7px 0 7px;
  font-size: 25px;
}

.muted {
  color: var(--muted);
  line-height: 1.6;
}

.social-list {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}

.social-list a,
.social-static {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 9px 11px;
  border: 1px solid #eeeeef;
  border-radius: 15px;
  transition: border .2s, transform .2s, background .2s;
}

.social-list a:hover {
  transform: translateX(3px);
  border-color: #e8b9c0;
  background: #fff8f9;
}

.social-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--red-soft);
  color: var(--red);
  font-weight: 900;
}

.social-list strong,
.social-list small {
  display: block;
}

.social-list strong {
  font-size: 13px;
}

.social-list small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.contact-list {
  display: grid;
  gap: 11px;
  margin-top: 22px;
}

.contact-list a {
  padding: 15px 0;
  border-bottom: 1px solid #efeff1;
}

.contact-list a:last-child {
  border-bottom: 0;
}

.contact-list span,
.contact-list strong {
  display: block;
}

.contact-list span {
  color: var(--muted);
  font-size: 12px;
}

.contact-list strong {
  margin-top: 5px;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.coverage-tags span {
  padding: 9px 11px;
  border-radius: 999px;
  background: #f7f7f8;
  border: 1px solid #ededee;
  font-size: 12px;
  font-weight: 700;
}


.conductors-section {
  padding: 8px 0 78px;
}

.conductors-panel {
  position: relative;
  padding: 30px;
  border: 1px solid #ead7da;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.97), rgba(255,248,249,.98)),
    #fff;
  box-shadow: 0 16px 40px rgba(74, 0, 10, .07);
  overflow: hidden;
}

.conductors-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-2));
}

.conductors-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee3e5;
}

.conductors-heading h2 {
  margin: 8px 0 10px;
  max-width: 760px;
  font-size: clamp(27px, 4vw, 38px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.conductors-heading p {
  max-width: 800px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.conductors-mark {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--red-dark), var(--red-2));
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(180,0,24,.18);
}

.conductors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.rule-card {
  position: relative;
  padding: 21px 20px 20px;
  border: 1px solid #eee7e8;
  border-radius: 19px;
  background: #fff;
}

.rule-number {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}

.rule-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.rule-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.rule-card strong {
  color: var(--ink);
}

.attention-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 17px;
  align-items: flex-start;
  margin-top: 18px;
  padding: 22px;
  border: 1px solid #efbec5;
  border-radius: 20px;
  background: linear-gradient(135deg, #fff0f2, #fff9fa);
}

.attention-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--red);
  color: #fff;
  font-size: 23px;
  font-weight: 900;
}

.attention-box span {
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
}

.attention-box h3 {
  margin: 5px 0 7px;
  font-size: 19px;
}

.attention-box p {
  margin: 0;
  color: #61565a;
  font-size: 13px;
  line-height: 1.65;
}

.conductors-signature {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #eee3e5;
  font-size: 13px;
}

.conductors-signature span {
  color: var(--muted);
}

@media (max-width: 720px) {
  .conductors-section {
    padding: 0 0 50px;
  }

  .conductors-panel {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .conductors-heading {
    flex-direction: column-reverse;
  }

  .conductors-grid {
    grid-template-columns: 1fr;
  }

  .attention-box {
    grid-template-columns: 1fr;
  }

  .conductors-signature {
    flex-direction: column;
    gap: 6px;
  }
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #111114;
  color: #fff;
}

.footer-inner {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo-slot {
  width: 52px;
  height: 52px;
  border-color: #404047;
  background: #19191e;
  color: #777780;
}

.footer-brand strong {
  font-size: 16px;
}

.footer-brand p,
.footer-right p,
.footer-right small {
  margin: 4px 0 0;
  color: #a8a8b0;
  font-size: 12px;
}

.footer-right {
  text-align: right;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .next-programs {
    grid-template-columns: 1fr 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .social-card {
    grid-column: 1 / -1;
  }

  .official-card {
    grid-template-columns: auto 1fr;
  }

  .license-box {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 76px;
  }

  .brand-text small,
  .header-status {
    display: none;
  }

  .logo-slot {
    width: 48px;
    height: 48px;
    border-radius: 13px;
  }

  .hero {
    padding: 48px 0;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-copy h1 {
    font-size: 44px;
  }

  .clock-card {
    padding: 20px;
    border-radius: 23px;
  }

  .clock {
    font-size: 55px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 22px;
  }

  .next-section,
  .schedule-section,
  .info-section {
    padding: 50px 0;
  }

  .next-programs,
  .schedule-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .social-card {
    grid-column: auto;
  }

  .program-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .official-section {
    padding: 0 0 50px;
  }

  .official-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .official-badge {
    width: 54px;
    height: 54px;
  }

  .license-box {
    grid-column: auto;
  }

  .footer-inner {
    padding: 24px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-right {
    text-align: left;
  }
}

@media (max-width: 430px) {
  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }
}
