:root {
  --ink: #101318;
  --muted: #737982;
  --line: rgba(16, 19, 24, 0.1);
  --paper: rgba(255, 255, 255, 0.82);
  --paper-strong: rgba(255, 255, 255, 0.94);
  --navy: #172945;
  --blue-soft: #d9ebf0;
  --peach: #ffe2b8;
  --green-soft: #d9eadf;
  --radius-xl: 46px;
  --radius-lg: 30px;
  --radius-md: 18px;
  --shadow-soft: 0 24px 70px rgba(34, 50, 68, 0.11);
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 230, 198, 0.88), transparent 29rem),
    radial-gradient(circle at 92% 34%, rgba(209, 232, 237, 0.95), transparent 28rem),
    radial-gradient(circle at 56% 92%, rgba(222, 238, 226, 0.76), transparent 23rem),
    linear-gradient(180deg, #ffffff 0%, #f8f9f8 58%, #ffffff 100%);
}

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

button {
  border: 0;
  font: inherit;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  width: min(1200px, calc(100% - 32px));
  min-height: 74px;
  margin: 16px auto 18px;
  padding: 12px 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border: 1px solid rgba(17, 22, 29, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 42px rgba(38, 51, 64, 0.07);
  backdrop-filter: blur(18px);
}

.brand,
.modal-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: #1f252c;
  font-size: 16px;
  font-weight: 800;
}

.brand-mark {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 11px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.36) 48%, transparent 48%),
    linear-gradient(135deg, #172945 0%, #5b6775 100%);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.45), 0 9px 18px rgba(12, 18, 28, 0.12);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 8px 7px;
  border-top: 2px solid rgba(255, 255, 255, 0.84);
  border-bottom: 2px solid rgba(255, 255, 255, 0.58);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 30px);
  font-size: 15px;
  font-weight: 750;
  white-space: nowrap;
}

.nav-link {
  position: relative;
  padding: 10px 0;
  color: #11161d;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transform: translateX(-50%);
  transition: width 180ms ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 28px;
}

.page-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto 72px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 572px;
  border: 1px solid rgba(17, 22, 29, 0.08);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(rgba(17, 22, 29, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 22, 29, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 14% 76%, rgba(255, 205, 141, 0.72), transparent 19rem),
    radial-gradient(circle at 91% 82%, rgba(185, 219, 228, 0.88), transparent 22rem),
    linear-gradient(125deg, rgba(255, 247, 238, 0.9), rgba(249, 250, 250, 0.92) 48%, rgba(225, 239, 241, 0.9));
  background-size: 56px 56px, 56px 56px, auto, auto, auto;
  box-shadow: var(--shadow-soft);
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(8px);
}

.hero-panel::before {
  width: 290px;
  height: 290px;
  left: -80px;
  bottom: -80px;
  background: rgba(255, 207, 147, 0.28);
}

.hero-panel::after {
  width: 300px;
  height: 300px;
  right: -70px;
  bottom: -100px;
  background: rgba(161, 210, 219, 0.32);
}

.hero-tabs {
  position: relative;
  z-index: 1;
  width: fit-content;
  max-width: calc(100% - 64px);
  margin: 31px 0 0 32px;
  padding: 6px;
  display: flex;
  gap: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 36px rgba(24, 40, 58, 0.08);
}

.hero-tab {
  min-width: 60px;
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  color: #6c7178;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 850;
}

.hero-tab.is-active {
  color: #ffffff;
  background: var(--navy);
  box-shadow: 0 10px 22px rgba(27, 48, 75, 0.22);
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: 432px;
  padding: 30px 32px 42px 38px;
  display: grid;
  grid-template-columns: minmax(310px, 0.9fr) minmax(430px, 1fr);
  align-items: center;
  gap: 46px;
}

.hero-copy {
  padding-top: 8px;
}

.eyebrow {
  margin: 0 0 16px;
  color: rgba(89, 95, 102, 0.74);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(46px, 5.8vw, 76px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: 0;
}

.hero-text {
  max-width: 540px;
  margin: 24px 0 54px;
  color: #626972;
  font-size: 17px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
}

.button-primary {
  color: #ffffff;
  background: var(--navy);
  box-shadow: 0 12px 22px rgba(27, 48, 75, 0.18);
}

.button-secondary {
  border: 1px solid rgba(17, 22, 29, 0.06);
  color: #11161d;
  background: rgba(255, 255, 255, 0.82);
}

.lead-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 31px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(18px);
}

.lead-media {
  height: 218px;
  margin: 0;
  overflow: hidden;
  background: #d7e2e7;
}

.lead-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.lead-copy {
  padding: 23px 24px 25px;
}

.desk-label,
.category {
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  align-items: center;
  border-radius: 999px;
  color: #66707b;
  font-size: 12px;
  font-weight: 850;
}

.desk-label {
  padding: 0 10px;
  background: rgba(23, 41, 69, 0.08);
}

.category {
  margin-bottom: 10px;
  color: #1f385c;
}

.lead-copy h2 {
  margin: 16px 0 12px;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: 0;
}

.lead-copy p {
  margin: 0 0 18px;
  color: #5f6771;
  font-size: 15px;
  line-height: 1.75;
}

.lead-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.source-link,
.story-card a {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.mini-banner {
  width: 152px;
  height: 48px;
  overflow: hidden;
  flex: 0 0 auto;
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(23, 41, 69, 0.18);
}

.banner-track {
  width: 300%;
  height: 100%;
  display: flex;
  animation: banner-slide 12s infinite;
}

.mini-banner:hover .banner-track {
  animation-play-state: paused;
}

.banner-slide {
  position: relative;
  width: 33.333%;
  min-width: 33.333%;
  height: 48px;
  overflow: hidden;
  color: #ffffff;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.1) contrast(0.92);
}

.banner-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 18, 28, 0.76), rgba(11, 18, 28, 0.14));
}

.banner-slide span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 9px;
  z-index: 1;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
}

@keyframes banner-slide {
  0%,
  27% {
    transform: translateX(0);
  }
  33%,
  60% {
    transform: translateX(-33.333%);
  }
  66%,
  93% {
    transform: translateX(-66.666%);
  }
  100% {
    transform: translateX(0);
  }
}

.news-panel,
.editorial-grid,
.split-section,
.live-panel,
.about-band {
  margin-top: 26px;
}

.news-panel,
.live-panel {
  padding: 26px 32px 16px;
  border: 1px solid rgba(17, 22, 29, 0.08);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 48px rgba(40, 51, 60, 0.06);
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.section-head.tight {
  margin-bottom: 18px;
}

.section-head h2,
.split-section h2,
.about-band h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.1;
  font-weight: 750;
  letter-spacing: 0;
}

.section-link,
.live-count {
  min-height: 45px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 22, 29, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.news-list {
  display: grid;
}

.news-item {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 26px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(17, 22, 29, 0.09);
}

.news-item:last-child,
.live-item:last-child {
  border-bottom: 0;
}

.news-item time,
.live-item time {
  color: #9aa0a7;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  line-height: 1.8;
  white-space: nowrap;
}

.news-copy h3,
.story-card h3,
.live-item h3 {
  margin: 0 0 12px;
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.42;
  font-weight: 820;
  letter-spacing: 0;
}

.news-copy p,
.story-card p,
.live-item p {
  margin: 0;
  color: #747981;
  font-size: 15px;
  line-height: 1.75;
}

.tag-row {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-row span {
  min-height: 26px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #1f385c;
  background: rgba(23, 41, 69, 0.07);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
}

.compact-tags {
  margin-top: 0;
}

.about-tags {
  margin-top: 18px;
}

.story-trigger {
  cursor: pointer;
}

.story-trigger:hover h2,
.story-trigger:hover h3,
.story-trigger:hover strong {
  color: #1f4f7a;
}

.story-trigger:focus-visible,
.nav-link:focus-visible,
.button:focus-visible,
.hero-tab:focus-visible,
.modal-close:focus-visible,
.copy-button:focus-visible {
  outline: 3px solid rgba(31, 79, 122, 0.28);
  outline-offset: 3px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 24px;
  align-items: stretch;
}

.column-main,
.column-rail {
  padding: 30px 32px;
  border: 1px solid rgba(17, 22, 29, 0.07);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
}

.story-card {
  padding: 22px 0;
  border-top: 1px solid rgba(17, 22, 29, 0.09);
}

.story-card-large {
  padding-top: 0;
  border-top: 0;
}

.story-card-large h3 {
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.08;
}

.story-card-large p {
  max-width: 690px;
}

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

.story-row .story-card {
  padding-bottom: 0;
}

.column-rail {
  display: grid;
  align-content: start;
}

.rail-item {
  min-height: 74px;
  padding: 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  border-top: 1px solid rgba(17, 22, 29, 0.09);
  color: inherit;
  background: transparent;
  text-align: left;
}

.rail-item span {
  width: 34px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #a4a9af;
  background: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 850;
}

.rail-item strong {
  font-size: 16px;
  line-height: 1.45;
}

.split-section {
  padding: 36px 32px;
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 36px;
  align-items: start;
  border: 1px solid rgba(17, 22, 29, 0.07);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
}

.compact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.compact-card {
  min-height: 148px;
  padding: 20px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  border: 1px solid rgba(17, 22, 29, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
}

.compact-card span {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 850;
}

.compact-card small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.compact-card .tag-row span {
  min-height: 26px;
  padding: 0 10px;
  color: #1f385c;
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
}

.tool-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tool-strip button {
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(17, 22, 29, 0.08);
  border-radius: 999px;
  color: #283341;
  background: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}

.live-panel {
  padding-bottom: 10px;
}

.live-list {
  display: grid;
}

.live-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(17, 22, 29, 0.08);
}

.live-item h3 {
  margin-bottom: 6px;
  font-size: 17px;
}

.live-item p {
  font-size: 14px;
  line-height: 1.65;
}

.live-item .tag-row {
  margin-top: 10px;
}

.about-band {
  padding: 36px 32px 40px;
  border: 1px solid rgba(17, 22, 29, 0.08);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 224, 183, 0.5), transparent 16rem),
    radial-gradient(circle at 90% 62%, rgba(197, 225, 231, 0.6), transparent 18rem),
    rgba(255, 255, 255, 0.72);
}

.about-band p:not(.eyebrow) {
  max-width: 840px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.source-band {
  background:
    radial-gradient(circle at 14% 20%, rgba(218, 234, 224, 0.68), transparent 17rem),
    radial-gradient(circle at 90% 78%, rgba(255, 226, 184, 0.5), transparent 18rem),
    rgba(255, 255, 255, 0.74);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  padding: 28px;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15, 17, 20, 0.62);
}

.modal-backdrop.is-open {
  display: flex;
}

body.modal-open {
  overflow: hidden;
}

.modal-card {
  position: relative;
  width: min(480px, 100%);
  max-height: min(760px, calc(100vh - 56px));
  overflow: auto;
  padding: 28px 28px 0;
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #11161d;
  background: rgba(17, 22, 29, 0.06);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.modal-brand {
  color: #4b46d8;
  font-size: 26px;
}

.modal-brand .brand-mark {
  width: 28px;
  height: 28px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.32) 48%, transparent 48%),
    linear-gradient(135deg, #4b46d8 0%, #6d68ff 100%);
}

.modal-kicker {
  margin: 22px 0 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.modal-card h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 900;
}

.modal-meta {
  margin: 10px 0 0;
  color: #6b7480;
  font-size: 13px;
}

.modal-divider {
  height: 1px;
  margin: 18px 0;
  background: rgba(16, 19, 24, 0.1);
}

.modal-summary {
  margin: 0 0 12px;
  color: #253141;
  font-size: 14px;
  line-height: 1.75;
}

.modal-points {
  margin: 0;
  padding-left: 1.1em;
  color: #253141;
  font-size: 14px;
  line-height: 1.75;
}

.modal-tags {
  margin-top: 16px;
}

.modal-actions {
  position: sticky;
  bottom: 0;
  margin: 22px -28px 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #f6f7f8;
}

.copy-button,
.modal-actions a {
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #273346;
  background: #ffffff;
  font-size: 13px;
  font-weight: 850;
}

.copy-button {
  cursor: pointer;
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    width: min(680px, calc(100% - 24px));
    min-height: auto;
    border-radius: 30px;
  }

  .brand {
    justify-self: start;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .page-shell {
    width: min(680px, calc(100% - 24px));
  }

  .hero-panel {
    min-height: auto;
    border-radius: 34px;
  }

  .hero-tabs {
    margin: 24px 0 0 24px;
  }

  .hero-content {
    padding: 24px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-text {
    margin-bottom: 32px;
  }

  .lead-media {
    height: 228px;
  }

  .news-panel,
  .live-panel,
  .column-main,
  .column-rail,
  .split-section,
  .about-band {
    padding: 24px;
    border-radius: 28px;
  }

  .news-item,
  .live-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .editorial-grid,
  .split-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header,
  .page-shell {
    width: calc(100% - 18px);
  }

  .site-header {
    margin-top: 9px;
    padding: 12px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .nav-links {
    gap: 16px;
    font-size: 14px;
  }

  .hero-panel {
    border-radius: 28px;
  }

  .hero-tabs {
    max-width: calc(100% - 36px);
    margin: 18px 0 0 18px;
    overflow-x: auto;
  }

  .hero-tab {
    min-width: max-content;
    padding: 0 14px;
  }

  .hero-content {
    padding: 20px 18px 22px;
  }

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

  .lead-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .mini-banner {
    width: 100%;
    height: 58px;
  }

  .banner-slide {
    height: 58px;
  }

  .button {
    min-height: 48px;
    padding-inline: 18px;
  }

  .section-head {
    align-items: flex-start;
  }

  .section-link,
  .live-count {
    min-height: 38px;
    padding-inline: 14px;
  }

  .news-panel,
  .live-panel,
  .column-main,
  .column-rail,
  .split-section,
  .about-band {
    padding: 22px 18px;
  }

  .story-row,
  .compact-grid {
    grid-template-columns: 1fr;
  }

  .modal-backdrop {
    padding: 16px;
  }

  .modal-card {
    max-height: calc(100vh - 32px);
    padding-inline: 20px;
  }

  .modal-actions {
    margin-inline: -20px;
  }
}
