:root {
  --ink: #062236;
  --muted: #5c6d78;
  --teal: #009da7;
  --teal-dark: #006f79;
  --line: #e4eef2;
  --paper: #ffffff;
  --header-bg: rgba(255, 255, 255, 0.88);
  --hero-overlay:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 26%, rgba(255, 255, 255, 0.28) 57%, rgba(255, 255, 255, 0.06) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.96) 95%);
  --pulse-bg: rgba(255, 255, 255, 0.86);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.dark-mode {
  --ink: #f4fbff;
  --muted: #a9bac5;
  --line: rgba(195, 232, 238, 0.18);
  --paper: #061b2c;
  --header-bg: rgba(3, 21, 35, 0.84);
  --hero-overlay:
    linear-gradient(90deg, rgba(2, 16, 28, 0.96) 0%, rgba(2, 18, 31, 0.88) 30%, rgba(2, 22, 37, 0.48) 65%, rgba(2, 22, 37, 0.18) 100%),
    linear-gradient(180deg, rgba(2, 16, 28, 0.48), rgba(2, 16, 28, 0.96) 98%);
  --pulse-bg: rgba(5, 28, 44, 0.82);
  background: #061b2c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  margin: 0;
  transition: background 0.25s ease, color 0.25s ease;
}

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

.motion-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.42s ease, transform 0.42s ease;
}

.motion-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  align-items: center;
  background: var(--header-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(6, 34, 54, 0.08);
  display: grid;
  gap: 24px;
  grid-template-columns: auto 1fr auto;
  left: 0;
  padding: 16px clamp(20px, 4.5vw, 72px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  min-width: max-content;
}

.brand img {
  display: block;
  height: 74px;
  object-fit: contain;
  width: auto;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 1.8vw, 28px);
  justify-content: center;
}

.nav-links a,
.login-link {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.nav-links a:hover,
.login-link:hover {
  color: var(--teal);
}

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

.subscribe-link,
.primary-button,
.secondary-button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 900;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
}

.subscribe-link,
.primary-button {
  background: var(--teal);
  color: white;
  box-shadow: 0 14px 32px rgba(0, 157, 167, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.secondary-button {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.subscribe-link:hover,
.primary-button:hover,
.secondary-button:hover,
.lead-news-card a:hover {
  box-shadow: 0 18px 34px rgba(0, 157, 167, 0.24);
  transform: translateY(-2px);
}

.theme-toggle {
  background: rgba(6, 34, 54, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  height: 34px;
  padding: 3px;
  position: relative;
  width: 62px;
}

.theme-toggle span {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(6, 34, 54, 0.2);
  display: block;
  height: 26px;
  position: relative;
  transition: transform 0.22s ease, background 0.22s ease;
  width: 26px;
}

.theme-toggle span::before {
  content: "";
  display: none;
}

.theme-toggle .fa {
  color: #d99b21;
  font-size: 0.78rem;
  left: 50%;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

body.dark-mode .theme-toggle {
  background: rgba(0, 157, 167, 0.2);
}

body.dark-mode .theme-toggle span {
  background: #082238;
  transform: translateX(28px);
}

body.dark-mode .theme-toggle span::before {
  content: "";
}

body.dark-mode .theme-toggle .fa {
  color: #84f7ff;
}

.hero {
  min-height: 112svh;
  overflow: hidden;
  padding: 134px clamp(20px, 4.5vw, 72px) clamp(58px, 7vw, 90px);
  position: relative;
}

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

.hero-overlay {
  background: var(--hero-overlay);
  inset: 0;
  position: absolute;
}

.hero-content {
  max-width: 690px;
  padding-top: clamp(30px, 5vw, 62px);
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--ink);
  font-size: clamp(3.5rem, 8vw, 7.6rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.91;
  margin: 0;
}

.hero h1::first-line {
  color: var(--teal);
}

.hero-copy {
  color: var(--ink);
  font-size: clamp(1.08rem, 1.55vw, 1.32rem);
  line-height: 1.68;
  margin: 28px 0 30px;
  max-width: 560px;
}

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

.pulse-card {
  background: var(--pulse-bg);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(6, 34, 54, 0.09);
  border-radius: 16px;
  box-shadow: 0 22px 50px rgba(6, 34, 54, 0.12);
  margin: clamp(56px, 6vw, 84px) auto 0;
  max-width: 1380px;
  padding: 20px 26px 22px;
  position: relative;
  transform: none;
  width: 100%;
  z-index: 3;
}

.pulse-card.motion-item {
  transform: translateY(18px);
}

.pulse-card.motion-item.is-visible {
  transition-delay: 0.18s;
  transform: translateY(0);
}

.pulse-heading {
  align-items: baseline;
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.pulse-heading div {
  align-items: baseline;
  display: flex;
  gap: 16px;
}

.pulse-heading span {
  color: var(--teal-dark);
  font-size: 0.95rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pulse-heading em {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
}

.pulse-heading em::before {
  background: #1fae78;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 7px;
  margin: 0 8px 1px 0;
  width: 7px;
}

.pulse-heading a {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.pulse-heading a::after {
  content: " →";
}

.pulse-intelligence {
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(0, 157, 167, 0.12), transparent 46%),
    rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(155px, 0.55fr) minmax(260px, 1fr) minmax(220px, 0.75fr);
  margin: 0 0 18px;
  padding: 14px 18px;
}

body.dark-mode .pulse-intelligence {
  background:
    radial-gradient(circle at top left, rgba(0, 157, 167, 0.18), transparent 46%),
    rgba(7, 29, 48, 0.58);
}

.pulse-index small,
.pulse-trend small {
  color: var(--teal-dark);
  display: block;
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.pulse-index strong {
  align-items: baseline;
  color: var(--ink);
  display: flex;
  font-size: 2.15rem;
  gap: 5px;
  line-height: 1;
  margin-bottom: 4px;
}

.pulse-index strong em {
  color: var(--muted);
  font-size: 0.84rem;
  font-style: normal;
  font-weight: 900;
}

.pulse-index b {
  background: #e9fbef;
  border-radius: 999px;
  color: #1fae78;
  display: inline-flex;
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  padding: 5px 11px;
  text-transform: uppercase;
}

body.dark-mode .pulse-index b {
  background: rgba(31, 174, 120, 0.16);
}

.pulse-meter-bar {
  background: linear-gradient(90deg, #d85663 0%, #dda41f 50%, #1fae78 100%);
  border-radius: 999px;
  height: 12px;
  position: relative;
}

.pulse-meter-bar i {
  background: var(--ink);
  border-radius: 4px;
  height: 22px;
  left: var(--pulse-score, 72%);
  margin-left: -3px;
  position: absolute;
  top: -5px;
  transition: left 0.28s ease;
  width: 6px;
}

.pulse-meter-labels {
  color: var(--muted);
  display: flex;
  font-size: 0.62rem;
  font-weight: 800;
  justify-content: space-between;
  margin-top: 6px;
}

.pulse-trend svg {
  display: block;
  height: 42px;
  width: 100%;
}

.pulse-trend polygon {
  fill: var(--teal);
  opacity: 0.14;
}

.pulse-trend polyline {
  fill: none;
  stroke: var(--teal);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.pulse-grid {
  display: grid;
  gap: 18px 0;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.pulse-item {
  border-left: 1px solid var(--line);
  min-height: 122px;
  padding: 0 18px;
  position: relative;
}

.pulse-item:first-child {
  border-left: 0;
  padding-left: 0;
}

.pulse-item:nth-child(6n + 1) {
  border-left: 0;
}

.pulse-item small,
.pulse-item em {
  display: block;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.pulse-item small {
  color: var(--muted);
}

.pulse-item strong {
  color: var(--ink);
  display: block;
  font-size: 1.5rem;
  line-height: 1;
  margin: 9px 0 6px;
}

.pulse-item em {
  color: #1fae78;
}

.pulse-item em.down {
  color: #d85663;
}

.pulse-item span {
  color: var(--muted);
  display: block;
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.25;
  max-width: 150px;
}

.pulse-item.alert em {
  color: #dda41f;
}

.pulse-item.balance strong,
.pulse-item.balance em {
  color: var(--teal);
}

.mini-chart {
  bottom: 0;
  height: 36px;
  left: 18px;
  position: absolute;
  right: 18px;
  width: calc(100% - 36px);
}

.mini-chart polyline {
  fill: none;
  stroke: #35bd91;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.mini-chart polygon {
  fill: #35bd91;
  opacity: 0.14;
}

.mini-chart.down polyline {
  stroke: #d85663;
}

.mini-chart.down polygon {
  fill: #d85663;
}

.status strong {
  color: #1fae78;
  font-size: 1.24rem;
  text-transform: uppercase;
}

.pulse-item.status,
.pulse-item.score {
  min-height: 124px;
}

.pulse-item.status em,
.pulse-item.score em {
  font-size: 0.7rem;
  line-height: 1.1;
}

.status-ring,
.score-ring {
  background: conic-gradient(#1fae78 0 100%);
  border-radius: 50%;
  bottom: -2px;
  display: block;
  height: 40px;
  left: 18px;
  position: absolute;
  width: 40px;
}

.status-ring::after,
.score-ring::after {
  background: var(--pulse-bg);
  border-radius: 50%;
  content: "";
  inset: 8px;
  position: absolute;
}

.score-ring {
  background: conic-gradient(#287ea3 0 72%, #c9e5ee 72% 100%);
}

.pulse-item.is-refreshing {
  animation: metricPulse 0.34s ease;
}

@keyframes metricPulse {
  0% { transform: translateY(0); opacity: 1; }
  45% { transform: translateY(-3px); opacity: 0.68; }
  100% { transform: translateY(0); opacity: 1; }
}

.brief-section {
  background: var(--paper);
  padding: 56px clamp(20px, 4.5vw, 72px) 64px;
  position: relative;
  z-index: 4;
}

.brief-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 22px;
  max-width: 1380px;
}

.brief-heading p {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  margin: 0 0 7px;
  text-transform: uppercase;
}

.brief-heading h2 {
  color: var(--ink);
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
  line-height: 1.05;
  margin: 0;
}

.brief-heading a {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
}

.brief-heading a::after {
  content: " →";
}

.brief-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 1fr);
  margin: 0 auto;
  max-width: 1380px;
}

.lead-news-card,
.side-news-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(6, 34, 54, 0.08);
  overflow: hidden;
  position: relative;
  transition: opacity 0.42s ease, transform 0.42s ease, box-shadow 0.18s ease;
}

.lead-news-card:hover,
.side-news-card:hover {
  box-shadow: 0 22px 48px rgba(6, 34, 54, 0.16);
  transform: translateY(-5px);
}

.lead-news-card {
  background: #fff;
  min-height: 340px;
}

.lead-news-card img {
  height: 100%;
  object-fit: cover;
  object-position: right center;
  position: absolute;
  right: 0;
  top: 0;
  width: 62%;
  transition: transform 0.28s ease;
}

.lead-news-card:hover img,
.side-news-card:hover img {
  transform: scale(1.035);
}

.lead-news-card::after {
  background: linear-gradient(90deg, rgba(255,255,255,0.98) 0 53%, rgba(255,255,255,0.58), rgba(255,255,255,0.08));
  content: "";
  inset: 0;
  position: absolute;
}

body.dark-mode .lead-news-card {
  background: #071d30;
}

body.dark-mode .lead-news-card::after {
  background: linear-gradient(90deg, rgba(6,27,44,0.98) 0 54%, rgba(6,27,44,0.66), rgba(6,27,44,0.18));
}

.lead-news-card > div {
  max-width: 470px;
  padding: 34px;
  position: relative;
  z-index: 2;
}

.lead-news-card span,
.side-news-card span {
  border-radius: 5px;
  display: inline-flex;
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  padding: 6px 8px;
  text-transform: uppercase;
}

.lead-news-card span {
  background: rgba(6, 34, 54, 0.08);
  color: var(--ink);
}

body.dark-mode .lead-news-card span {
  background: rgba(255,255,255,0.1);
}

.lead-news-card h3 {
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.04;
  margin: 18px 0 6px;
}

.lead-news-card p {
  color: var(--ink);
  font-size: clamp(1.22rem, 2vw, 1.7rem);
  line-height: 1.18;
  margin: 0 0 24px;
}

.lead-news-card a {
  align-items: center;
  background: var(--teal);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  min-height: 38px;
  padding: 0 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lead-news-card a::after {
  content: " →";
  margin-left: 10px;
}

.lead-news-card time {
  color: var(--muted);
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  margin-top: 24px;
  text-transform: uppercase;
}

.story-dots {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}

.story-dots b {
  background: rgba(0, 157, 167, 0.35);
  border-radius: 50%;
  display: block;
  height: 7px;
  width: 7px;
}

.story-dots b:first-child {
  background: var(--teal);
}

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

.side-news-card {
  color: #fff;
  min-height: 161px;
}

.side-news-card img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
  transition: transform 0.28s ease;
}

.side-news-card::after {
  background: linear-gradient(135deg, rgba(4, 37, 54, 0.9), rgba(0, 157, 167, 0.42));
  content: "";
  inset: 0;
  position: absolute;
}

.side-news-card.purple::after {
  background: linear-gradient(135deg, rgba(28, 22, 73, 0.9), rgba(85, 57, 151, 0.44));
}

.side-news-card.amber::after {
  background: linear-gradient(135deg, rgba(92, 47, 20, 0.9), rgba(202, 118, 48, 0.46));
}

.side-news-card.blue::after {
  background: linear-gradient(135deg, rgba(7, 71, 113, 0.9), rgba(30, 155, 210, 0.43));
}

.side-news-card > div {
  bottom: 0;
  left: 0;
  padding: 18px;
  position: absolute;
  right: 0;
  z-index: 2;
}

.side-news-card span {
  background: rgba(255,255,255,0.16);
  color: #fff;
  margin-bottom: 10px;
}

.side-news-card h3 {
  color: #fff;
  font-size: clamp(0.98rem, 1.35vw, 1.18rem);
  line-height: 1.18;
  margin: 0 0 10px;
}

.side-news-card time {
  color: rgba(255,255,255,0.82);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.side-news-card:nth-child(2).is-visible {
  transition-delay: 0.08s;
}

.side-news-card:nth-child(3).is-visible {
  transition-delay: 0.14s;
}

.side-news-card:nth-child(4).is-visible {
  transition-delay: 0.2s;
}

.editorial-section {
  background: linear-gradient(180deg, var(--paper) 0%, rgba(0, 157, 167, 0.045) 100%);
  padding: 18px clamp(20px, 4.5vw, 72px) 76px;
}

.editorial-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 24px;
  max-width: 1380px;
}

.editorial-heading p {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  margin: 0 0 7px;
  text-transform: uppercase;
}

.editorial-heading h2 {
  color: var(--ink);
  font-size: clamp(1.55rem, 2.7vw, 2.6rem);
  line-height: 1.04;
  margin: 0;
  max-width: 720px;
}

.editorial-heading a {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
}

.editorial-heading a::after {
  content: " →";
}

.section-card-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1380px;
}

.operational-heading {
  margin: 42px auto 18px;
  max-width: 1380px;
}

.operational-heading p {
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.operational-heading h2,
.operational-heading h3 {
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  line-height: 1.12;
  margin: 0;
  max-width: 720px;
}

.operational-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.operational-grid .section-card {
  min-height: 198px;
}

.operational-directory {
  background: linear-gradient(180deg, rgba(0, 157, 167, 0.045), transparent);
  padding: 10px clamp(20px, 4.5vw, 72px) 34px;
}

.operational-reports {
  background: var(--paper);
  display: grid;
  gap: 22px;
  padding: 8px clamp(20px, 4.5vw, 72px) 34px;
}

.operational-report {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(6, 34, 54, 0.08);
  margin: 0 auto;
  max-width: 1380px;
  padding: clamp(24px, 3vw, 38px);
  scroll-margin-top: 124px;
  width: 100%;
}

body.dark-mode .operational-report {
  background: rgba(255, 255, 255, 0.045);
}

.report-kicker {
  align-items: center;
  color: var(--teal);
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 950;
  gap: 10px;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.operational-report h2 {
  color: var(--ink);
  font-size: clamp(1.45rem, 2.6vw, 2.35rem);
  line-height: 1.08;
  margin: 0 0 14px;
  max-width: 980px;
}

.operational-report h3 {
  color: var(--ink);
  font-size: 1rem;
  margin: 0 0 8px;
}

.operational-report p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.72;
  margin: 0 0 14px;
}

.report-company {
  color: var(--teal-dark);
  font-weight: 850;
}

.report-grid,
.report-callouts,
.tmec-list,
.radar-table {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.report-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.report-grid > div,
.report-callouts > div,
.tmec-list > section,
.radar-table > div {
  background: rgba(0, 157, 167, 0.055);
  border: 1px solid color-mix(in srgb, var(--teal) 16%, var(--line));
  border-radius: 14px;
  padding: 18px;
}

.report-stat {
  align-items: center;
  background: linear-gradient(120deg, var(--teal-dark), var(--teal));
  border-radius: 16px;
  color: #fff;
  display: flex;
  gap: 18px;
  margin: 20px 0;
  padding: 20px;
}

.report-stat strong {
  color: #fff;
  flex: 0 0 auto;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  line-height: 1;
}

.report-stat span {
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.45;
}

.report-steps {
  counter-reset: report-step;
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.report-steps li {
  align-items: start;
  color: var(--ink);
  display: grid;
  font-size: 0.94rem;
  font-weight: 750;
  gap: 12px;
  grid-template-columns: 28px minmax(0, 1fr);
  line-height: 1.5;
}

.report-steps li::before {
  align-items: center;
  background: var(--teal);
  border-radius: 50%;
  color: #fff;
  content: counter(report-step);
  counter-increment: report-step;
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 950;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.report-callouts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.report-callouts.single {
  grid-template-columns: 1fr;
}

.report-callouts span {
  color: var(--teal);
  display: block;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.tmec-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tmec-list p {
  font-size: 0.9rem;
}

.radar-table {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.radar-table b,
.radar-table strong,
.radar-table span {
  display: block;
}

.radar-table b {
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.radar-table strong {
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1;
  margin: 8px 0;
}

.radar-table span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.report-source {
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--teal) 32%, var(--line));
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 900;
  margin-top: 20px;
  padding: 10px 16px;
}

.report-source::after {
  content: " →";
}

.section-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(6, 34, 54, 0.05);
  color: var(--ink);
  display: grid;
  gap: 12px;
  min-height: 184px;
  overflow: hidden;
  padding: 24px;
  position: relative;
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

body.dark-mode .section-card {
  background: rgba(7, 29, 48, 0.82);
}

.section-card::before {
  background: radial-gradient(circle at top right, var(--accent-soft), transparent 58%);
  content: "";
  inset: 0;
  opacity: 0.9;
  position: absolute;
}

.section-card::after {
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  content: "";
  height: 100%;
  left: -120%;
  position: absolute;
  top: 0;
  transform: skewX(-18deg);
  transition: left 0.34s ease;
  width: 54%;
}

.section-card:hover {
  border-color: color-mix(in srgb, var(--accent), var(--line) 45%);
  box-shadow: 0 18px 38px rgba(6, 34, 54, 0.12);
  transform: translateY(-7px);
}

.section-card:hover::after {
  left: 135%;
}

.section-card > * {
  position: relative;
  z-index: 2;
}

.section-icon {
  align-items: center;
  background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent), white 72%);
  border-radius: 10px;
  color: var(--accent);
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 950;
  height: 42px;
  justify-content: center;
  position: relative;
  width: 42px;
  transition: transform 0.22s ease, background 0.22s ease;
}

.section-icon .fa {
  font-size: 1.2rem;
  line-height: 1;
}

.section-card:hover .section-icon {
  transform: translateY(-2px) scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .motion-item,
  .reveal-card {
    opacity: 1;
    transform: none;
  }
}

.section-card strong {
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.18;
}

.section-card p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.42;
  margin: 0;
}

.section-card em {
  align-self: end;
  color: var(--accent);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 900;
}

.section-card em::after {
  content: " →";
}

.reveal-card {
  opacity: 0;
  transform: translateY(18px);
}

.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.teal-card { --accent: #009da7; --accent-soft: #e5fbfb; }
.violet-card { --accent: #7556cf; --accent-soft: #f1edff; }
.green-card { --accent: #20a972; --accent-soft: #e9fbef; }
.amber-card { --accent: #cf9134; --accent-soft: #fff4df; }
.orange-card { --accent: #df8b28; --accent-soft: #fff0df; }
.purple-card { --accent: #8657c7; --accent-soft: #f4edff; }
.rose-card { --accent: #d85663; --accent-soft: #fff0f3; }
.gold-card { --accent: #dda41f; --accent-soft: #fff7d8; }
.mint-card { --accent: #14a9a7; --accent-soft: #e5fbfb; }
.pink-card { --accent: #d84f9d; --accent-soft: #fff0f8; }
.emerald-card { --accent: #1fae78; --accent-soft: #e8fbf1; }
.blue-card { --accent: #287ea3; --accent-soft: #e7f5fb; }

.feature-section {
  background: var(--paper);
  padding: 0 clamp(20px, 4.5vw, 72px) 82px;
}

.feature-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1380px;
}

.feature-panel {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 38px rgba(6, 34, 54, 0.08);
  display: grid;
  min-height: 330px;
  overflow: hidden;
  position: relative;
  transition: opacity 0.42s ease, transform 0.42s ease, box-shadow 0.2s ease;
}

body.dark-mode .feature-panel {
  background: rgba(7, 29, 48, 0.86);
}

.feature-panel:hover {
  box-shadow: 0 26px 56px rgba(6, 34, 54, 0.15);
  transform: translateY(-5px);
}

.people-panel {
  grid-template-columns: minmax(270px, 0.78fr) minmax(360px, 1.22fr);
}

.premium-panel {
  color: #fff;
}

.premium-panel::after {
  background: linear-gradient(90deg, rgba(2, 20, 32, 0.92), rgba(2, 20, 32, 0.66), rgba(2, 20, 32, 0.18));
  content: "";
  inset: 0;
  position: absolute;
}

.feature-panel img {
  height: 100%;
  object-fit: cover;
  position: relative;
  transition: transform 0.32s ease;
  width: 100%;
}

.feature-panel:hover img {
  transform: scale(1.035);
}

.people-panel img {
  object-position: center bottom;
}

.premium-panel img {
  inset: 0;
  object-position: center;
  position: absolute;
}

.feature-copy {
  align-content: center;
  display: grid;
  gap: 14px;
  padding: clamp(28px, 3vw, 42px);
  position: relative;
  z-index: 2;
}

.premium-panel .feature-copy {
  max-width: 460px;
}

.feature-copy p {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  margin: 0;
  text-transform: uppercase;
}

.premium-panel .feature-copy p {
  color: #62eeee;
}

.feature-copy h2 {
  color: var(--ink);
  font-size: clamp(1.55rem, 2.45vw, 2.55rem);
  line-height: 1.04;
  margin: 0;
}

.premium-panel .feature-copy h2 {
  color: #fff;
}

.feature-copy span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 470px;
}

.premium-panel .feature-copy span {
  color: rgba(255, 255, 255, 0.78);
}

.feature-copy a {
  align-items: center;
  color: var(--teal);
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 950;
  margin-top: 8px;
}

.feature-copy a::after {
  content: " →";
  margin-left: 10px;
}

.content-hub-section {
  background:
    radial-gradient(circle at 18% 100%, rgba(0, 157, 167, 0.07), transparent 34%),
    linear-gradient(180deg, var(--paper) 0%, rgba(0, 157, 167, 0.04) 100%);
  border-top: 1px solid var(--line);
  padding: 92px clamp(20px, 4.5vw, 72px) 82px;
}

.content-hub-heading {
  color: var(--ink);
  margin: 0 auto 42px;
  max-width: 760px;
  text-align: center;
}

.content-hub-heading p {
  align-items: center;
  color: var(--teal);
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 950;
  gap: 12px;
  letter-spacing: 0.16em;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.content-hub-heading p::before {
  background: var(--teal);
  content: "";
  display: block;
  height: 1px;
  width: 46px;
}

.content-hub-heading h2 {
  color: var(--ink);
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.04;
  margin: 0 auto 24px;
  max-width: 820px;
}

.content-hub-heading span {
  color: var(--muted);
  display: block;
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 auto;
  max-width: 650px;
}

.content-hub-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1380px;
}

.hub-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(6, 34, 54, 0.07);
  color: var(--ink);
  display: grid;
  min-height: 270px;
  overflow: hidden;
  padding: 28px;
  position: relative;
  transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

body.dark-mode .hub-card {
  background: rgba(7, 29, 48, 0.84);
}

.hub-card::before {
  background: radial-gradient(circle at top left, rgba(0, 157, 167, 0.12), transparent 50%);
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s ease;
}

.hub-card:hover {
  border-color: rgba(0, 157, 167, 0.26);
  box-shadow: 0 24px 52px rgba(6, 34, 54, 0.13);
  transform: translateY(-7px);
}

.hub-card:hover::before {
  opacity: 1;
}

.hub-card > * {
  position: relative;
  z-index: 2;
}

.hub-icon {
  align-items: center;
  color: var(--teal);
  display: inline-flex;
  font-size: 2rem;
  height: 36px;
  justify-content: flex-start;
  line-height: 1;
  margin-bottom: 30px;
  position: relative;
  width: 42px;
}

.hub-card strong {
  color: var(--ink);
  display: block;
  font-size: 1.08rem;
  line-height: 1.2;
  margin-bottom: 14px;
}

.hub-card p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
  margin: 0 0 28px;
}

.hub-card em {
  align-items: center;
  align-self: end;
  border: 1px solid rgba(0, 157, 167, 0.34);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 950;
  justify-content: center;
  min-height: 38px;
  padding: 0 22px;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.hub-card:hover em {
  background: #009da7;
  border-color: #009da7;
  color: #fff;
}

.membership-section {
  background: linear-gradient(180deg, rgba(0, 157, 167, 0.04), var(--paper));
  padding: 0 clamp(20px, 4.5vw, 72px) 86px;
}

.membership-panel {
  border-radius: 14px;
  box-shadow: 0 24px 58px rgba(6, 34, 54, 0.12);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 360px);
  margin: 0 auto;
  max-width: 1380px;
  min-height: 430px;
  overflow: hidden;
  position: relative;
}

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

.membership-panel::after {
  background:
    linear-gradient(90deg, rgba(0, 110, 116, 0.94) 0%, rgba(0, 110, 116, 0.76) 38%, rgba(6, 34, 54, 0.4) 100%),
    linear-gradient(180deg, rgba(6, 34, 54, 0.08), rgba(6, 34, 54, 0.7));
  content: "";
  inset: 0;
  position: absolute;
}

.membership-copy {
  align-content: center;
  display: grid;
  gap: 16px;
  max-width: 660px;
  padding: clamp(34px, 5vw, 64px);
  position: relative;
  z-index: 2;
}

.membership-copy p,
.price-card span {
  color: #aef8f5;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  margin: 0;
  text-transform: uppercase;
}

.membership-copy h2 {
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.98;
  margin: 0;
  max-width: 560px;
}

.membership-copy > span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 560px;
}

.membership-copy ul,
.price-card ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

.membership-copy li,
.price-card li {
  align-items: baseline;
  display: flex;
  gap: 10px;
}

.membership-copy li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
}

.membership-copy li::before,
.price-card li::before {
  color: #40d7bd;
  content: "✓";
  font-weight: 950;
}

.price-card {
  align-self: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 12px;
  box-shadow: 0 24px 50px rgba(6, 34, 54, 0.18);
  color: var(--ink);
  display: grid;
  gap: 12px;
  margin: 34px;
  padding: 28px;
  position: relative;
  z-index: 2;
}

body.dark-mode .price-card {
  background: rgba(7, 29, 48, 0.92);
  border-color: rgba(255, 255, 255, 0.1);
}

.price-card span {
  color: var(--teal);
}

.price-card strong {
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
}

.price-card small {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

.price-card p {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  margin: 0;
}

.price-card li {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.price-card a {
  align-items: center;
  background: var(--teal);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 950;
  justify-content: center;
  margin-top: 10px;
  min-height: 44px;
  padding: 0 22px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.price-card a:hover {
  box-shadow: 0 18px 34px rgba(0, 157, 167, 0.26);
  transform: translateY(-2px);
}

.site-footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 157, 167, 0.06), transparent 32%),
    var(--paper);
  border-top: 1px solid var(--line);
  padding: 54px clamp(20px, 4.5vw, 72px) 26px;
}

.footer-main {
  display: grid;
  gap: clamp(26px, 4vw, 58px);
  grid-template-columns: minmax(260px, 1.35fr) repeat(4, minmax(130px, 0.65fr));
  margin: 0 auto;
  max-width: 1380px;
}

.footer-brand img {
  display: block;
  height: 86px;
  margin-bottom: 18px;
  object-fit: contain;
  object-position: left center;
  width: auto;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
  max-width: 330px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer-socials a {
  align-items: center;
  background: rgba(0, 157, 167, 0.08);
  border: 1px solid rgba(0, 157, 167, 0.16);
  border-radius: 50%;
  color: var(--teal-dark);
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 950;
  height: 34px;
  justify-content: center;
  text-transform: uppercase;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
  width: 34px;
}

.footer-socials a:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-2px);
}

.footer-column {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-column h2 {
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  margin: 0 0 4px;
  text-transform: uppercase;
}

.footer-column a {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.25;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-column a:hover {
  color: var(--teal);
  transform: translateX(2px);
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 42px auto 0;
  max-width: 1380px;
  padding-top: 22px;
}

.footer-bottom p {
  font-size: 0.78rem;
  font-weight: 750;
  margin: 0;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.footer-bottom a {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.footer-bottom a:hover {
  color: var(--teal);
}

.back-to-top {
  align-items: center;
  background: var(--teal);
  border: 0;
  border-radius: 50%;
  bottom: 24px;
  box-shadow: 0 16px 34px rgba(0, 157, 167, 0.28);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 1.35rem;
  height: 48px;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 24px;
  transform: translateY(14px) scale(0.92);
  transition: opacity 0.24s ease, transform 0.24s ease, background 0.22s ease, box-shadow 0.22s ease;
  width: 48px;
  z-index: 12;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  background: var(--teal-dark);
  box-shadow: 0 20px 42px rgba(0, 157, 167, 0.34);
  transform: translateY(-3px) scale(1);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(0, 157, 167, 0.28);
  outline-offset: 4px;
}

.section-page {
  background: var(--paper);
}

.section-page .site-header {
  background: rgba(255, 255, 255, 0.92);
}

body.dark-mode.section-page .site-header {
  background: rgba(6, 27, 44, 0.9);
}

.section-hero {
  display: grid;
  min-height: 78svh;
  overflow: hidden;
  padding: 148px clamp(20px, 4.5vw, 72px) 70px;
  position: relative;
}

.section-hero::after {
  background:
    linear-gradient(90deg, var(--paper) 0 39%, rgba(255,255,255,0.82) 54%, rgba(255,255,255,0.12) 100%),
    radial-gradient(circle at 12% 24%, color-mix(in srgb, var(--section-accent) 18%, transparent), transparent 34%);
  content: "";
  inset: 0;
  position: absolute;
}

body.dark-mode .section-hero::after {
  background:
    linear-gradient(90deg, var(--paper) 0 40%, rgba(6,27,44,0.86) 58%, rgba(6,27,44,0.18) 100%),
    radial-gradient(circle at 12% 24%, color-mix(in srgb, var(--section-accent) 18%, transparent), transparent 34%);
}

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

.section-hero-copy {
  align-self: center;
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.section-kicker {
  align-items: center;
  color: var(--section-accent);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 950;
  gap: 10px;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.section-hero h1 {
  color: var(--ink);
  font-size: clamp(2.4rem, 5.2vw, 5.7rem);
  line-height: 0.98;
  margin: 0;
  max-width: 900px;
}

.section-hero p {
  color: var(--ink);
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  line-height: 1.58;
  margin: 24px 0 18px;
  max-width: 650px;
}

.section-hero time {
  color: var(--muted);
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-article {
  background: var(--paper);
  margin: 0 auto;
  max-width: 920px;
  padding: 64px 20px 76px;
}

.article-lead {
  color: var(--ink);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 850;
  line-height: 1.52;
  margin: 0 0 28px;
}

.article-body p {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.86;
  margin: 0 0 22px;
}

.section-article blockquote {
  background:
    radial-gradient(circle at 0 0, color-mix(in srgb, var(--section-accent) 16%, transparent), transparent 44%),
    rgba(0, 157, 167, 0.06);
  border-left: 5px solid var(--section-accent);
  border-radius: 0 14px 14px 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 750;
  line-height: 1.7;
  margin: 34px 0;
  padding: 24px 26px;
}

.article-source {
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--section-accent) 35%, var(--line));
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 900;
  padding: 10px 18px;
}

.article-source::after {
  content: " →";
}

.section-more {
  align-items: end;
  background: linear-gradient(180deg, rgba(0, 157, 167, 0.04), transparent);
  display: flex;
  justify-content: space-between;
  padding: 44px clamp(20px, 4.5vw, 72px) 74px;
}

.section-more div,
.section-more a {
  max-width: 920px;
}

.section-more p,
.section-directory-hero p {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.section-more h2,
.section-directory-hero h1 {
  color: var(--ink);
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  line-height: 1.05;
  margin: 0;
}

.section-more a {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.section-more a::after {
  content: " →";
}

.section-directory-hero {
  padding: 156px clamp(20px, 4.5vw, 72px) 36px;
}

.section-directory-hero span {
  color: var(--muted);
  display: block;
  font-size: 1rem;
  line-height: 1.65;
  margin-top: 18px;
  max-width: 720px;
}

.section-directory-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 20px clamp(20px, 4.5vw, 72px) 82px;
}

.section-directory-card {
  background: rgba(255,255,255,0.84);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(6, 34, 54, 0.08);
  color: var(--ink);
  min-height: 430px;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

body.dark-mode .section-directory-card {
  background: rgba(255,255,255,0.04);
}

.section-directory-card:hover {
  box-shadow: 0 24px 52px rgba(6, 34, 54, 0.14);
  transform: translateY(-6px);
}

.section-directory-card img {
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  width: 100%;
}

.section-directory-card span,
.section-directory-card h2,
.section-directory-card p,
.section-directory-card time {
  margin-left: 22px;
  margin-right: 22px;
}

.section-directory-card span {
  align-items: center;
  color: var(--section-accent);
  display: flex;
  font-size: 0.74rem;
  font-weight: 950;
  gap: 9px;
  letter-spacing: 0.08em;
  margin-top: 22px;
  text-transform: uppercase;
}

.section-directory-card h2 {
  color: var(--ink);
  font-size: 1.32rem;
  line-height: 1.14;
  margin-bottom: 12px;
  margin-top: 11px;
}

.section-directory-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.section-directory-card time {
  color: var(--muted);
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  margin-bottom: 24px;
  margin-top: 18px;
  text-transform: uppercase;
}

.news-list-hero {
  background:
    radial-gradient(circle at 72% 8%, rgba(0, 157, 167, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(0, 157, 167, 0.04), transparent);
  padding: 156px clamp(20px, 4.5vw, 72px) 38px;
}

.news-list-hero div {
  max-width: 920px;
}

.news-list-hero p,
.news-list-filters p {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.news-list-hero h1 {
  color: var(--ink);
  font-size: clamp(2.45rem, 5vw, 5.2rem);
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
}

.news-list-hero span {
  color: var(--muted);
  display: block;
  font-size: 1.05rem;
  line-height: 1.65;
  margin-top: 20px;
  max-width: 720px;
}

.news-list-shell {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  padding: 28px clamp(20px, 4.5vw, 72px) 86px;
}

.news-list-filters {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(6, 34, 54, 0.06);
  display: grid;
  gap: 8px;
  padding: 22px;
  position: sticky;
  top: 112px;
}

body.dark-mode .news-list-filters {
  background: rgba(255,255,255,0.04);
}

.news-list-filters a {
  border-radius: 10px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 850;
  padding: 10px 12px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.news-list-filters a:hover {
  background: rgba(0, 157, 167, 0.08);
  color: var(--teal-dark);
  transform: translateX(3px);
}

.news-list-main {
  display: grid;
  gap: 18px;
}

.news-featured-card,
.news-list-item {
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(6, 34, 54, 0.08);
  color: var(--ink);
  overflow: hidden;
  scroll-margin-top: 126px;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

body.dark-mode .news-featured-card,
body.dark-mode .news-list-item {
  background: rgba(255,255,255,0.04);
}

.news-featured-card:hover,
.news-list-item:hover {
  box-shadow: 0 24px 52px rgba(6, 34, 54, 0.14);
  transform: translateY(-5px);
}

.news-featured-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 390px;
}

.news-featured-card img,
.news-list-item img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.news-featured-card div {
  align-self: center;
  padding: 34px;
}

.news-featured-card span,
.news-list-item span {
  align-items: center;
  color: var(--section-accent);
  display: flex;
  font-size: 0.74rem;
  font-weight: 950;
  gap: 9px;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.news-featured-card h2 {
  color: var(--ink);
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
  line-height: 1.02;
  margin: 0 0 16px;
}

.news-featured-card p,
.news-list-item p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 16px;
}

.news-featured-card time,
.news-list-item time {
  color: var(--muted);
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.news-list-stack {
  display: grid;
  gap: 14px;
}

.news-list-item {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  min-height: 190px;
}

.news-list-item div {
  align-self: center;
  padding: 24px 26px;
}

.news-list-item h2 {
  color: var(--ink);
  font-size: clamp(1.16rem, 1.8vw, 1.75rem);
  line-height: 1.12;
  margin: 0 0 10px;
}

.category-hero {
  align-items: end;
  background:
    radial-gradient(circle at 78% 8%, color-mix(in srgb, var(--section-accent) 14%, transparent), transparent 34%),
    linear-gradient(180deg, rgba(0, 157, 167, 0.04), transparent);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  padding: 156px clamp(20px, 4.5vw, 72px) 48px;
}

.category-hero-copy p {
  align-items: center;
  color: var(--section-accent);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 950;
  gap: 10px;
  letter-spacing: 0.14em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.category-hero h1 {
  color: var(--ink);
  font-size: clamp(2.7rem, 6vw, 6.4rem);
  line-height: 0.92;
  margin: 0;
}

.category-hero-copy span {
  color: var(--muted);
  display: block;
  font-size: 1.08rem;
  line-height: 1.62;
  margin-top: 20px;
  max-width: 650px;
}

.category-stats {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(6, 34, 54, 0.08);
  padding: 24px;
}

body.dark-mode .category-stats {
  background: rgba(255,255,255,0.04);
}

.category-stats strong {
  color: var(--ink);
  display: block;
  font-size: 3.2rem;
  line-height: 1;
}

.category-stats span,
.category-stats time {
  color: var(--muted);
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  margin-top: 8px;
  text-transform: uppercase;
}

.category-layout {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  padding: 18px clamp(20px, 4.5vw, 72px) 88px;
}

.category-main {
  display: grid;
  gap: 20px;
}

.category-featured {
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(6, 34, 54, 0.09);
  color: var(--ink);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: 420px;
  overflow: hidden;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

body.dark-mode .category-featured,
body.dark-mode .category-list-row,
body.dark-mode .category-sidebar {
  background: rgba(255,255,255,0.04);
}

.category-featured:hover,
.category-list-row:hover {
  box-shadow: 0 24px 52px rgba(6, 34, 54, 0.14);
  transform: translateY(-5px);
}

.category-featured img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.category-featured div {
  align-self: center;
  padding: 34px;
}

.category-featured span {
  color: var(--section-accent);
  display: block;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.category-featured h2 {
  color: var(--ink);
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
  line-height: 1.02;
  margin: 0 0 16px;
}

.category-featured p,
.category-list-row p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
  margin: 0 0 16px;
}

.category-featured time,
.category-list-row time {
  color: var(--muted);
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.category-section-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.category-section-heading p,
.category-sidebar p {
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.category-section-heading h2 {
  color: var(--ink);
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  line-height: 1.05;
  margin: 0;
}

.category-section-heading strong {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.category-list-row {
  align-items: center;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(6, 34, 54, 0.06);
  color: var(--ink);
  display: grid;
  gap: 22px;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  padding: 22px;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.category-list-row h3 {
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1.18;
  margin: 0 0 8px;
}

.category-list-row span {
  color: var(--section-accent);
  font-size: 0.82rem;
  font-weight: 950;
}

.category-sidebar {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(6, 34, 54, 0.06);
  display: grid;
  gap: 12px;
  padding: 22px;
  position: sticky;
  top: 112px;
}

.category-sidebar a {
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.34;
  padding-bottom: 12px;
}

.category-sidebar a:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.category-sidebar span {
  color: var(--muted);
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  margin-bottom: 5px;
  text-transform: uppercase;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .header-actions {
    justify-content: end;
  }

  .pulse-card {
    position: relative;
    inset: auto;
    margin-top: 48px;
    right: auto;
    transform: none;
    width: 100%;
  }

  .pulse-card.motion-item,
  .pulse-card.motion-item.is-visible {
    transform: none;
  }

  .hero {
    min-height: auto;
    padding-bottom: 42px;
  }

  .pulse-intelligence {
    grid-template-columns: 1fr;
  }

  .section-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-grid,
  .people-panel {
    grid-template-columns: 1fr;
  }

  .people-panel img {
    max-height: 380px;
  }

  .content-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .membership-panel {
    grid-template-columns: 1fr;
  }

  .price-card {
    margin-top: 0;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .section-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-list-shell {
    grid-template-columns: 1fr;
  }

  .news-list-filters {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 16px;
    position: relative;
    top: auto;
  }

  .news-list-filters p {
    flex: 0 0 auto;
    margin: 10px 8px 0 0;
  }

  .news-list-filters a {
    background: rgba(0, 157, 167, 0.06);
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .report-grid,
  .report-callouts,
  .tmec-list,
  .radar-table {
    grid-template-columns: 1fr;
  }

  .category-hero,
  .category-layout {
    grid-template-columns: 1fr;
  }

  .category-sidebar {
    position: relative;
    top: auto;
  }
}

@media (max-width: 900px) {
  .section-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand small,
  .login-link {
    display: none;
  }

  .brand img {
    height: 52px;
    max-width: 250px;
  }

  .hero {
    padding: 108px 16px 24px;
  }

  .hero-overlay {
    background: var(--hero-overlay);
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .section-hero {
    min-height: auto;
    padding: 118px 16px 46px;
  }

  .section-hero::after {
    background:
      linear-gradient(180deg, var(--paper) 0 48%, rgba(255,255,255,0.84) 76%, rgba(255,255,255,0.3) 100%),
      radial-gradient(circle at 0 20%, color-mix(in srgb, var(--section-accent) 14%, transparent), transparent 38%);
  }

  body.dark-mode .section-hero::after {
    background:
      linear-gradient(180deg, var(--paper) 0 50%, rgba(6,27,44,0.86) 78%, rgba(6,27,44,0.34) 100%),
      radial-gradient(circle at 0 20%, color-mix(in srgb, var(--section-accent) 14%, transparent), transparent 38%);
  }

  .section-hero img {
    opacity: 0.48;
  }

  .section-hero h1 {
    font-size: clamp(2.15rem, 12vw, 3.6rem);
  }

  .section-hero p {
    font-size: 1rem;
  }

  .section-article {
    padding: 40px 16px 54px;
  }

  .article-body p {
    font-size: 0.98rem;
    line-height: 1.76;
  }

  .section-article blockquote {
    border-radius: 0 12px 12px 0;
    font-size: 0.98rem;
    padding: 20px;
  }

  .section-more {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding: 34px 16px 54px;
  }

  .section-directory-hero {
    padding: 118px 16px 26px;
  }

  .section-directory-grid {
    grid-template-columns: 1fr;
    padding: 14px 16px 54px;
  }

  .section-directory-card {
    min-height: auto;
  }

  .news-list-hero {
    padding: 118px 16px 28px;
  }

  .news-list-hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }

  .news-list-shell {
    padding: 18px 16px 54px;
  }

  .operational-directory,
  .operational-reports {
    padding-left: 16px;
    padding-right: 16px;
  }

  .report-stat {
    align-items: flex-start;
    flex-direction: column;
  }

  .news-featured-card,
  .news-list-item {
    grid-template-columns: 1fr;
  }

  .news-featured-card img,
  .news-list-item img {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .news-featured-card div,
  .news-list-item div {
    padding: 22px;
  }

  .news-featured-card h2 {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }

  .category-hero {
    padding: 118px 16px 32px;
  }

  .category-hero h1 {
    font-size: clamp(2.5rem, 15vw, 4rem);
  }

  .category-layout {
    padding: 18px 16px 54px;
  }

  .category-featured {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .category-featured img {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .category-featured div {
    padding: 24px;
  }

  .category-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .category-list-row {
    align-items: start;
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .hero-actions a {
    width: 100%;
  }

  .pulse-card {
    border-radius: 14px;
    margin-top: 34px;
    padding: 14px;
  }

  .pulse-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
  }

  .pulse-heading div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .pulse-heading span {
    font-size: 0.82rem;
  }

  .pulse-heading a {
    font-size: 0.76rem;
  }

  .pulse-intelligence {
    gap: 14px;
    margin-bottom: 14px;
    padding: 14px;
  }

  .pulse-index strong {
    font-size: 1.9rem;
  }

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

  .pulse-item {
    background: rgba(255, 255, 255, 0.58);
    border-left: 0;
    border-radius: 12px;
    border-top: 0;
    min-height: 136px;
    overflow: hidden;
    padding: 14px 12px 42px;
  }

  .pulse-item:first-child {
    border-top: 0;
  }

  body.dark-mode .pulse-item {
    background: rgba(255, 255, 255, 0.04);
  }

  .pulse-item small,
  .pulse-item em {
    font-size: 0.62rem;
    line-height: 1.12;
  }

  .pulse-item strong {
    font-size: 1.45rem;
    margin: 7px 0 5px;
  }

  .mini-chart {
    height: 30px;
    left: 12px;
    right: 12px;
    width: calc(100% - 24px);
  }

  .pulse-item.status,
  .pulse-item.score {
    min-height: 128px;
  }

  .status-ring,
  .score-ring {
    bottom: 12px;
    height: 34px;
    left: 12px;
    width: 34px;
  }

  .brief-section {
    padding: 38px 16px 46px;
  }

  .brief-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .brief-grid,
  .side-news-grid {
    grid-template-columns: 1fr;
  }

  .lead-news-card {
    min-height: 500px;
  }

  .lead-news-card img {
    bottom: 0;
    height: 46%;
    object-position: center;
    top: auto;
    width: 100%;
  }

  .lead-news-card::after {
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0 58%, rgba(255,255,255,0.2));
  }

  body.dark-mode .lead-news-card::after {
    background: linear-gradient(180deg, rgba(6,27,44,0.98) 0 58%, rgba(6,27,44,0.2));
  }

  .editorial-section {
    padding: 10px 16px 46px;
  }

  .editorial-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

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

  .section-card {
    min-height: 170px;
  }

  .feature-section {
    padding: 0 16px 52px;
  }

  .feature-panel {
    min-height: 360px;
  }

  .premium-panel {
    min-height: 420px;
  }

  .premium-panel::after {
    background: linear-gradient(180deg, rgba(2, 20, 32, 0.94), rgba(2, 20, 32, 0.68), rgba(2, 20, 32, 0.28));
  }

  .content-hub-section {
    padding: 64px 16px 54px;
  }

  .content-hub-heading {
    margin-bottom: 28px;
    text-align: left;
  }

  .content-hub-heading p::before {
    width: 32px;
  }

  .content-hub-grid {
    grid-template-columns: 1fr;
  }

  .hub-card {
    min-height: 245px;
  }

  .membership-section {
    padding: 0 16px 54px;
  }

  .membership-panel {
    border-radius: 12px;
  }

  .membership-panel::after {
    background:
      linear-gradient(180deg, rgba(0, 110, 116, 0.92), rgba(0, 110, 116, 0.7), rgba(6, 34, 54, 0.82));
  }

  .membership-copy {
    padding: 30px 24px 10px;
  }

  .price-card {
    margin: 20px;
  }

  .site-footer {
    padding: 42px 16px 24px;
  }

  .footer-main {
    gap: 26px;
    grid-template-columns: 1fr;
  }

  .footer-brand img {
    height: 70px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 34px;
  }

  .footer-bottom div {
    justify-content: flex-start;
  }

  .back-to-top {
    bottom: 18px;
    height: 44px;
    right: 18px;
    width: 44px;
  }
}

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

  .pulse-item {
    min-height: 118px;
  }
}


/* Editorial reading polish */
.article-lead,
.article-body p,
.section-article blockquote,
.operational-report > p,
.report-grid p,
.tmec-list p,
.report-callouts p,
.report-stat span {
  hyphens: auto;
  text-align: justify;
  text-wrap: pretty;
}

@media (max-width: 680px) {
  .article-lead,
  .article-body p,
  .section-article blockquote,
  .operational-report > p,
  .report-grid p,
  .tmec-list p,
  .report-callouts p,
  .report-stat span {
    hyphens: manual;
    text-align: left;
  }
}
