:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #697586;
  --line: #e4e8ee;
  --paper: #f7f9fb;
  --white: #ffffff;
  --green: #0e8f74;
  --green-dark: #065f50;
  --gold: #d49a31;
  --coral: #e46c55;
  --blue: #2371c9;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(228, 232, 238, 0.8);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-size: 16px;
}

.search-button {
  position: relative;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
}

.search-button::before {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 12px;
  height: 12px;
  content: "";
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.search-button::after {
  position: absolute;
  top: 23px;
  left: 24px;
  width: 9px;
  height: 2px;
  content: "";
  background: var(--ink);
  transform: rotate(45deg);
  transform-origin: left center;
}

.hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #0d1c1f;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 24, 28, 0.9), rgba(8, 24, 28, 0.4) 55%, rgba(8, 24, 28, 0.1)),
    linear-gradient(0deg, rgba(8, 24, 28, 0.85), rgba(8, 24, 28, 0.05) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 74px 22px 34px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #83f0d5;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(40px, 12vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 520px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.7;
}

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

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.primary-action {
  background: var(--green);
  color: #fff;
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #fff;
}

.channel-nav {
  position: sticky;
  top: 56px;
  z-index: 9;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 16px;
  background: rgba(247, 249, 251, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.channel-nav a {
  flex: 0 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  color: #314154;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 1px 0 rgba(23, 32, 42, 0.06);
}

.ticker {
  display: flex;
  gap: 12px;
  max-width: 1080px;
  margin: 16px auto 0;
  padding: 0 16px;
}

.ticker strong {
  flex: 0 0 auto;
  color: var(--coral);
  font-size: 14px;
}

.ticker div {
  display: flex;
  min-width: 0;
  gap: 18px;
  overflow-x: auto;
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 34px 16px 0;
}

.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.section-title h2 {
  margin-bottom: 0;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: 0;
}

.section-title a {
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 800;
}

.tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-bottom: 14px;
}

.tabs button {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.tabs button.active {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.headline-list {
  display: grid;
  gap: 12px;
}

.headline,
.role-grid article,
.report-card,
.event-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(23, 32, 42, 0.05);
}

.headline {
  padding: 16px;
}

.headline.featured {
  min-height: 188px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(14, 143, 116, 0.94), rgba(35, 113, 201, 0.88)),
    #0e8f74;
  color: #fff;
}

.headline-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 5px 9px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 800;
}

.headline h3 {
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.45;
}

.headline.featured h3 {
  font-size: 22px;
}

.headline p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.headline span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.headline.featured span {
  color: rgba(255, 255, 255, 0.75);
}

.headline.hidden {
  display: none;
}

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

.role-grid article {
  min-height: 176px;
  padding: 18px 16px;
}

.role-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.role-grid h3 {
  margin: 14px 0 8px;
  font-size: 18px;
}

.role-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.resource-band {
  max-width: none;
  margin-top: 34px;
  padding: 34px 16px;
  background: #122521;
  color: #fff;
}

.resource-band .section-title {
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
}

.resource-band .eyebrow {
  color: #83f0d5;
}

.map-list {
  display: grid;
  max-width: 1080px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.map-list button {
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 800;
}

.insight-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.insight-panel div {
  min-height: 88px;
  padding: 14px 10px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}

.insight-panel strong,
.insight-panel span {
  display: block;
  text-align: center;
}

.insight-panel strong {
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 16px;
}

.insight-panel span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.report-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
}

.report-card p {
  margin-bottom: 7px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
}

.report-card h3 {
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.45;
}

.report-card a {
  flex: 0 0 auto;
  padding: 9px 12px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.calendar-section {
  padding-bottom: 34px;
}

.event-list {
  display: grid;
  gap: 12px;
}

.event-list article {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
}

.event-list time {
  flex: 0 0 58px;
  color: var(--green-dark);
  font-size: 22px;
  font-weight: 900;
}

.event-list h3 {
  margin-bottom: 5px;
  font-size: 16px;
}

.event-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  padding: 28px 18px 40px;
  background: #fff;
  border-top: 1px solid var(--line);
  text-align: center;
}

.site-footer p {
  margin: 8px auto 0;
  max-width: 520px;
  color: var(--muted);
  line-height: 1.6;
}

@media (min-width: 760px) {
  .site-header {
    padding: 0 28px;
  }

  .hero,
  .hero-content {
    min-height: 640px;
  }

  .hero-content {
    max-width: 1080px;
    margin: 0 auto;
    padding-right: 28px;
    padding-left: 28px;
  }

  .headline-list {
    grid-template-columns: 1.15fr 1fr;
  }

  .headline.featured {
    grid-row: span 3;
  }

  .role-grid,
  .map-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .insight-panel {
    gap: 14px;
  }
}
