: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: 1;
  transform: translateY(0);
  transition: opacity 0.42s ease, transform 0.42s ease;
}

html.motion-ready .motion-item {
  opacity: 0;
  transform: translateY(18px);
}

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

.top-news-ticker {
  align-items: center;
  background: var(--ink);
  color: #fff;
  display: flex;
  gap: 16px;
  height: 38px;
  left: 0;
  overflow: hidden;
  padding: 0 clamp(16px, 4vw, 72px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 12;
}

body.dark-mode .top-news-ticker {
  background: #041420;
  border-bottom: 1px solid rgba(132, 247, 255, 0.12);
}

.ticker-label {
  align-items: center;
  background: var(--teal);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.68rem;
  font-weight: 950;
  height: 24px;
  letter-spacing: 0.12em;
  padding: 0 12px;
  text-transform: uppercase;
}

.ticker-track {
  display: flex;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 44px), transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 44px), transparent 100%);
}

.ticker-track:hover .ticker-items {
  animation-play-state: paused;
}

.ticker-items {
  align-items: center;
  animation: ticker-scroll 52s linear infinite;
  display: flex;
  flex: 0 0 auto;
  gap: 26px;
  padding-right: 26px;
  white-space: nowrap;
}

.ticker-items a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 850;
}

.ticker-items a::before {
  color: #84f7ff;
  content: "•";
  margin-right: 12px;
}

.ticker-items a:hover {
  color: #fff;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.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;
}

.has-news-ticker .site-header {
  top: 38px;
}

.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;
}

.mobile-menu-toggle {
  align-items: center;
  background: rgba(0, 157, 167, 0.08);
  border: 1px solid rgba(0, 157, 167, 0.18);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  display: none;
  height: 44px;
  justify-content: center;
  padding: 0;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
  width: 44px;
}

.mobile-menu-toggle:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-1px);
}

.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;
}

.has-news-ticker .hero {
  padding-top: 172px;
}

.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;
}

.hero-edition-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(6, 34, 54, 0.1);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(6, 34, 54, 0.14);
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 0.9fr) minmax(150px, 0.7fr);
  max-width: 510px;
  padding: 28px;
  position: absolute;
  right: clamp(28px, 5vw, 82px);
  top: clamp(176px, 20vw, 232px);
  width: min(34vw, 510px);
  z-index: 3;
}

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

.hero-edition-card.motion-item.is-visible {
  transition-delay: 0.12s;
  transform: translateY(0);
}

.edition-copy span {
  border: 1px solid rgba(0, 157, 167, 0.32);
  border-radius: 999px;
  color: var(--teal);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  padding: 8px 14px;
  text-transform: uppercase;
}

.edition-copy h2 {
  color: var(--ink);
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 0.96;
  margin: 0 0 12px;
}

.edition-copy p {
  color: var(--ink);
  font-size: clamp(1rem, 1.2vw, 1.22rem);
  font-weight: 650;
  line-height: 1.38;
  margin: 0 0 24px;
}

.edition-button {
  align-items: center;
  background: #d9df12;
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 950;
  min-height: 46px;
  padding: 0 20px;
}

.edition-button::after {
  content: " →";
  margin-left: 10px;
}

.hero-edition-card img {
  filter: drop-shadow(0 20px 22px rgba(6, 34, 54, 0.18));
  height: auto;
  justify-self: end;
  max-height: 285px;
  max-width: 190px;
  object-fit: contain;
  width: 100%;
}

body.dark-mode .hero-edition-card {
  background: rgba(7, 31, 48, 0.84);
  border-color: rgba(132, 247, 255, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

body.dark-mode .edition-copy p,
body.dark-mode .edition-copy h2 {
  color: var(--ink);
}

.hero-stats-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  position: absolute;
  right: clamp(28px, 5vw, 82px);
  top: clamp(528px, 42vw, 585px);
  width: min(52vw, 760px);
  z-index: 3;
}

.hero-stats-grid.motion-item {
  transform: translateY(18px);
}

.hero-stats-grid.motion-item.is-visible {
  transition-delay: 0.2s;
  transform: translateY(0);
}

.hero-stat-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(6, 34, 54, 0.08);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(6, 34, 54, 0.1);
  display: grid;
  gap: 12px;
  grid-template-columns: 44px 1fr;
  min-height: 82px;
  padding: 14px 16px;
}

.hero-stat-card.stat-wide {
  grid-column: span 2;
}

.hero-stat-card .fa {
  align-items: center;
  border-radius: 12px;
  display: inline-flex;
  font-size: 1rem;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.hero-stat-card strong {
  color: var(--ink);
  display: block;
  font-size: clamp(1.12rem, 1.8vw, 1.55rem);
  font-weight: 950;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-card span {
  color: var(--muted);
  display: block;
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.22;
}

.stat-purple .fa {
  background: rgba(124, 86, 219, 0.12);
  color: #7557d8;
}

.stat-blue .fa {
  background: rgba(48, 144, 224, 0.12);
  color: #248bd0;
}

.stat-green .fa {
  background: rgba(31, 174, 120, 0.12);
  color: #1fae78;
}

.stat-orange .fa {
  background: rgba(239, 139, 39, 0.13);
  color: #ef8b27;
}

.stat-pink .fa {
  background: rgba(232, 75, 154, 0.12);
  color: #e84b9a;
}

body.dark-mode .hero-stat-card {
  background: rgba(7, 31, 48, 0.84);
  border-color: rgba(132, 247, 255, 0.14);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.hero-editorial {
  align-items: center;
  display: grid;
  gap: clamp(30px, 5vw, 82px);
  grid-template-columns: minmax(0, 0.82fr) minmax(390px, 0.72fr);
  min-height: auto;
  padding-bottom: clamp(42px, 6vw, 74px);
}

.hero-editorial .hero-content {
  max-width: 760px;
  padding-top: clamp(24px, 4vw, 54px);
}

.hero-editorial h1 {
  font-size: clamp(3.2rem, 6.4vw, 6.2rem);
  max-width: 820px;
}

.hero-editorial .hero-copy {
  max-width: 610px;
}

.hero-priority-board {
  display: grid;
  gap: 16px;
  max-width: 720px;
  position: relative;
  width: 100%;
  z-index: 3;
}

.hero-priority-board.motion-item {
  transform: translateY(18px);
}

.hero-priority-board.motion-item.is-visible {
  transition-delay: 0.14s;
  transform: translateY(0);
}

.hero-main-note,
.hero-priority-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(6, 34, 54, 0.1);
  box-shadow: 0 24px 70px rgba(6, 34, 54, 0.12);
  color: var(--ink);
  overflow: hidden;
  position: relative;
}

.hero-main-note {
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 350px;
  padding: clamp(26px, 3vw, 38px);
}

.hero-main-note::before {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--section-accent, #009da7) 82%, #062236), rgba(5, 34, 54, 0.96)),
    radial-gradient(circle at 84% 16%, rgba(217, 223, 18, 0.52), transparent 28%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 0;
}

.hero-main-note::after {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  content: "";
  height: 220px;
  position: absolute;
  right: -74px;
  top: -74px;
  width: 220px;
  z-index: 0;
}

.hero-main-note > * {
  position: relative;
  z-index: 1;
}

.hero-note-kicker {
  align-items: center;
  color: rgba(255, 255, 255, 0.88);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 950;
  gap: 9px;
  letter-spacing: 0.12em;
  margin-bottom: auto;
  text-transform: uppercase;
}

.hero-main-note h2 {
  color: #fff;
  font-size: clamp(2.2rem, 4.1vw, 4.25rem);
  line-height: 0.96;
  margin: clamp(58px, 7vw, 86px) 0 18px;
  max-width: 520px;
}

.hero-main-note p {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  font-weight: 650;
  line-height: 1.55;
  margin: 0 0 22px;
  max-width: 560px;
}

.hero-main-note time {
  color: color-mix(in srgb, var(--section-accent, #d9df12) 24%, #ffffff);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.hero-priority-card {
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 22px;
}

.hero-main-note:hover,
.hero-priority-card:hover {
  box-shadow: 0 28px 78px rgba(6, 34, 54, 0.16);
  transform: translateY(-4px);
}

.hero-priority-card .fa {
  align-items: center;
  background: color-mix(in srgb, var(--section-accent, #009da7) 12%, transparent);
  border-radius: 12px;
  color: var(--section-accent, var(--teal));
  display: inline-flex;
  font-size: 1rem;
  height: 42px;
  justify-content: center;
  margin-bottom: 18px;
  width: 42px;
}

.hero-priority-card span {
  color: var(--section-accent, var(--teal-dark));
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero-priority-card strong {
  color: var(--ink);
  display: block;
  font-size: 1rem;
  line-height: 1.22;
  margin-bottom: 10px;
}

.hero-priority-card small {
  color: var(--muted);
  display: block;
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.42;
  margin-top: auto;
}

.hero-editorial .home-news-reel,
.hero-editorial .pulse-card {
  grid-column: 1 / -1;
}

.hero-editorial .home-news-reel {
  margin-top: clamp(22px, 4vw, 46px);
}

.hero-editorial .home-news-reel + .pulse-card {
  margin-top: clamp(30px, 4vw, 50px);
}

body.dark-mode .hero-main-note,
body.dark-mode .hero-priority-card {
  background: rgba(7, 31, 48, 0.84);
  border-color: rgba(132, 247, 255, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

body.dark-mode .hero-priority-card strong {
  color: var(--ink);
}

.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(118px, 11vw, 164px) 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;
}

.pulse-intelligence {
  display: none;
}

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(6, minmax(0, 1fr));
}

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

.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: 1;
  transform: translateY(0);
}

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

html.motion-ready .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;
}

.express-section {
  background: linear-gradient(180deg, rgba(0, 157, 167, 0.04), rgba(255, 255, 255, 0.92));
  border-top: 1px solid var(--line);
  padding: 86px clamp(20px, 4.5vw, 72px) 78px;
}

.express-home-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1380px;
}

.express-home-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(6, 34, 54, 0.08);
  color: var(--ink);
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  min-height: 230px;
  overflow: hidden;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.express-home-card:hover {
  border-color: color-mix(in srgb, var(--section-accent) 36%, var(--line));
  box-shadow: 0 26px 56px rgba(6, 34, 54, 0.14);
  transform: translateY(-6px);
}

.express-home-card img {
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  width: 100%;
}

.express-home-card div {
  align-content: center;
  display: grid;
  padding: 26px;
}

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

.express-home-card h3 {
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.08;
  margin: 0 0 14px;
}

.express-home-card p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.58;
  margin: 0 0 18px;
}

.express-home-card time {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.express-more-link {
  align-items: center;
  border: 1px solid rgba(0, 157, 167, 0.32);
  border-radius: 999px;
  color: var(--ink);
  display: flex;
  font-size: 0.86rem;
  font-weight: 950;
  justify-content: center;
  margin: 30px auto 0;
  max-width: 210px;
  min-height: 44px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.express-more-link:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-2px);
}

.express-category-hero {
  background:
    radial-gradient(circle at 82% 16%, rgba(0, 157, 167, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 251, 252, 0.84));
}

.express-note-hero {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.88) 44%, rgba(255,255,255,0.28) 100%),
    var(--note-image) center/cover;
  display: flex;
  min-height: clamp(360px, 48vh, 520px);
  padding-bottom: clamp(44px, 6vw, 76px);
  padding-top: clamp(54px, 6vw, 86px);
}

.express-note-page main {
  padding-top: var(--header-height);
}

.express-note-hero .section-note-copy {
  max-width: min(760px, 100%);
  width: 100%;
}

.express-note-hero .section-note-copy h1 {
  font-size: clamp(2.05rem, 3.65vw, 3.85rem);
  line-height: 1.06;
  margin-bottom: 22px;
  max-width: 760px;
  overflow-wrap: anywhere;
  word-break: normal;
}

.express-note-hero .section-note-copy p {
  font-size: clamp(1rem, 1.16vw, 1.18rem);
  line-height: 1.55;
  max-width: 680px;
  overflow-wrap: anywhere;
}

.express-article {
  max-width: 860px;
  padding-top: clamp(42px, 6vw, 74px);
}

.express-article .article-lead {
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  line-height: 1.62;
}

.express-article .article-body p {
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  line-height: 1.78;
}

.express-detail-list {
  background: rgba(0, 157, 167, 0.06);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin: 38px 0;
  padding: 28px;
}

.express-detail-list h2 {
  color: var(--ink);
  font-size: 1.4rem;
  margin: 0 0 18px;
}

.express-detail-list ul {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.express-detail-list li {
  border-bottom: 1px solid rgba(8, 45, 70, 0.1);
  display: grid;
  gap: 8px;
  padding-bottom: 14px;
}

.express-detail-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.express-detail-list strong {
  color: var(--section-accent);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.express-detail-list span {
  color: var(--ink);
  line-height: 1.55;
}

body.dark-mode .express-section {
  background: linear-gradient(180deg, rgba(0, 157, 167, 0.08), rgba(3, 18, 30, 0.96));
}

body.dark-mode .express-home-card,
body.dark-mode .express-detail-list {
  background: rgba(7, 29, 48, 0.86);
}

.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);
  display: grid;
  gap: 8px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
}

.price-card small {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.2;
}

.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);
}

.signup-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 44%, rgba(255, 255, 255, 0.6) 100%),
    url("assets/optimized/home.jpg") right center / cover no-repeat;
  display: grid;
  gap: clamp(28px, 4vw, 64px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  min-height: calc(100vh - 96px);
  padding: clamp(54px, 8vw, 118px) clamp(22px, 5vw, 92px);
}

.signup-copy {
  align-content: center;
  display: grid;
  gap: 22px;
  max-width: 720px;
}

.signup-copy h1 {
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.94;
  margin: 0;
  max-width: 780px;
}

.signup-copy > p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.28rem);
  line-height: 1.7;
  margin: 0;
  max-width: 620px;
}

.signup-offer {
  align-content: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 157, 167, 0.16);
  border-radius: 12px;
  box-shadow: 0 22px 44px rgba(6, 34, 54, 0.1);
  display: grid;
  gap: 10px;
  max-width: 460px;
  min-height: 154px;
  padding: 24px 26px;
}

.signup-offer span {
  color: var(--teal);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 950;
  line-height: 1;
}

.signup-offer strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.2;
  text-transform: lowercase;
}

.signup-offer em {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 800;
}

.signup-form {
  align-self: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 157, 167, 0.16);
  border-radius: 14px;
  box-shadow: 0 28px 58px rgba(6, 34, 54, 0.16);
  display: grid;
  gap: 16px;
  padding: clamp(24px, 3vw, 34px);
}

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

.signup-form h2 {
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
  margin: 0;
}

.signup-form label {
  color: var(--ink);
  display: grid;
  font-size: 0.82rem;
  font-weight: 900;
  gap: 8px;
}

.signup-form .bot-field {
  height: 0;
  margin: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  width: 0;
}

.signup-form input,
.signup-form select {
  appearance: none;
  background: #fff;
  border: 1px solid rgba(102, 121, 134, 0.22);
  border-radius: 10px;
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
  min-height: 46px;
  padding: 0 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.signup-form input:focus,
.signup-form select:focus {
  border-color: rgba(0, 157, 167, 0.72);
  box-shadow: 0 0 0 4px rgba(0, 157, 167, 0.12);
  outline: none;
}

.signup-form button {
  background: var(--teal);
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  min-height: 50px;
  padding: 0 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.signup-form button:hover {
  background: var(--teal-dark);
  box-shadow: 0 18px 34px rgba(0, 157, 167, 0.24);
  transform: translateY(-2px);
}

.signup-form button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.signup-status {
  border-radius: 10px;
  color: var(--muted);
  display: none;
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.45;
  padding: 12px 14px;
}

.signup-status.is-pending,
.signup-status.is-success {
  display: block;
}

.signup-status.is-pending {
  background: rgba(0, 157, 167, 0.08);
  color: var(--teal-dark);
}

.signup-status.is-success {
  background: rgba(25, 173, 118, 0.12);
  color: #13885e;
}

.hidden-submit-frame {
  border: 0;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 1px;
}

.signup-form > p {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
  margin: 0;
}

body.dark-mode .signup-hero {
  background:
    linear-gradient(90deg, rgba(6, 22, 36, 0.98) 0%, rgba(6, 22, 36, 0.9) 48%, rgba(6, 22, 36, 0.56) 100%),
    url("assets/optimized/home.jpg") right center / cover no-repeat;
}

body.dark-mode .signup-copy h1,
body.dark-mode .signup-offer strong,
body.dark-mode .signup-form h2,
body.dark-mode .signup-form label {
  color: #f4fbfd;
}

body.dark-mode .signup-copy > p,
body.dark-mode .signup-offer em,
body.dark-mode .signup-form > p {
  color: rgba(234, 244, 248, 0.74);
}

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

body.dark-mode .signup-form input,
body.dark-mode .signup-form select {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: #f4fbfd;
}

.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-visit-counter {
  align-items: center;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(6, 34, 54, 0.06);
  display: inline-flex;
  gap: 12px;
  margin-top: 24px;
  max-width: 330px;
  padding: 14px 16px;
}

.footer-visit-counter i {
  align-items: center;
  background: rgba(0, 157, 167, 0.1);
  border-radius: 12px;
  color: var(--teal);
  display: inline-flex;
  flex: 0 0 42px;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.footer-visit-counter div {
  display: grid;
  gap: 7px;
}

.footer-stat-row {
  display: grid;
  gap: 2px;
}

.footer-stat-secondary {
  border-top: 1px solid rgba(0, 157, 167, 0.16);
  padding-top: 7px;
}

.footer-visit-counter strong {
  color: var(--ink);
  font-size: 1.38rem;
  line-height: 1;
}

.footer-stat-secondary strong {
  color: var(--teal-dark);
  font-size: 1.08rem;
}

.footer-visit-counter span {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-visit-counter small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 760;
}

body.dark-mode .footer-visit-counter {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.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;
}

.share-button {
  align-items: center;
  background: var(--section-accent);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 16px 34px color-mix(in srgb, var(--section-accent) 24%, transparent);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 950;
  gap: 9px;
  justify-content: center;
  margin-top: 22px;
  min-height: 44px;
  padding: 0 18px;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.share-button:hover {
  background: color-mix(in srgb, var(--section-accent), #062236 16%);
  box-shadow: 0 20px 42px color-mix(in srgb, var(--section-accent) 30%, transparent);
  transform: translateY(-2px);
}

.share-button.is-copied {
  background: #20a972;
}

.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 {
    gap: 14px;
    grid-template-columns: auto 1fr auto;
    justify-content: space-between;
  }

  .brand {
    justify-self: start;
  }

  .nav-links {
    display: none;
  }

  .site-header.is-menu-open .nav-links {
    background: var(--header-bg);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 24px 64px rgba(6, 34, 54, 0.18);
    display: grid;
    gap: 4px;
    left: 16px;
    padding: 12px;
    position: fixed;
    right: 16px;
    top: 104px;
  }

  .has-news-ticker .site-header.is-menu-open .nav-links {
    top: 142px;
  }

  .site-header.is-menu-open .nav-links a {
    border-radius: 10px;
    padding: 13px 14px;
  }

  .site-header.is-menu-open .nav-links a:hover {
    background: rgba(0, 157, 167, 0.08);
  }

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

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .signup-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .signup-copy {
    max-width: 760px;
  }

  .signup-form {
    max-width: 640px;
    width: 100%;
  }

  .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;
  }

  .hero-editorial {
    grid-template-columns: 1fr;
  }

  .hero-editorial .hero-content {
    max-width: 760px;
  }

  .hero-priority-board {
    max-width: 100%;
  }

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

  .hero-edition-card {
    grid-template-columns: minmax(0, 1fr) minmax(130px, 180px);
    margin-top: 36px;
    max-width: 620px;
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
  }

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

  .hero-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 16px;
    max-width: 620px;
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
  }

  .hero-stats-grid.motion-item,
  .hero-stats-grid.motion-item.is-visible {
    transform: none;
  }

  .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));
  }

  .express-home-grid {
    grid-template-columns: 1fr;
  }

  .express-home-card {
    grid-template-columns: 150px minmax(0, 1fr);
  }
}

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

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

  .brand img {
    height: 50px;
    max-width: 170px;
  }

  .header-actions {
    gap: 8px;
  }

  .subscribe-link {
    min-height: 42px;
    padding: 0 16px;
  }

  .express-section {
    padding: 58px 16px 52px;
  }

  .express-note-hero {
    min-height: auto;
    padding: calc(var(--header-height) + 28px) 18px 44px;
  }

  .express-note-hero .section-note-copy h1 {
    font-size: clamp(1.9rem, 8.8vw, 2.85rem);
    line-height: 1.08;
  }

  .express-note-hero .section-note-copy p {
    font-size: 1rem;
    line-height: 1.55;
  }

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

  .express-home-card img {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .express-home-card div,
  .express-detail-list {
    padding: 22px;
  }

  .theme-toggle,
  .mobile-menu-toggle {
    height: 42px;
    width: 42px;
  }

  .site-header.is-menu-open .nav-links {
    top: 86px;
  }

  .top-news-ticker {
    gap: 10px;
    height: 40px;
    padding: 0 14px;
  }

  .ticker-label {
    font-size: 0.6rem;
    height: 24px;
    padding: 0 9px;
  }

  .ticker-items {
    gap: 20px;
  }

  .ticker-items a {
    font-size: 0.72rem;
  }

  .has-news-ticker .site-header {
    top: 40px;
  }

  .has-news-ticker .site-header.is-menu-open .nav-links {
    top: 126px;
  }

  .signup-hero {
    padding: 112px 18px 42px;
  }

  .signup-copy h1 {
    font-size: clamp(2.7rem, 15vw, 4.4rem);
  }

  .signup-offer,
  .signup-form {
    border-radius: 12px;
    padding: 20px;
  }

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

  .has-news-ticker .hero {
    padding-top: 148px;
  }

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

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

  .hero-editorial h1 {
    font-size: clamp(2.85rem, 13vw, 4.25rem);
    line-height: 0.96;
  }

  .hero-main-note {
    border-radius: 18px;
    min-height: 300px;
    padding: 24px;
  }

  .hero-main-note h2 {
    font-size: clamp(2rem, 10vw, 3.25rem);
    margin-top: 54px;
  }

  .hero-priority-grid {
    grid-template-columns: 1fr;
  }

  .hero-priority-card {
    min-height: auto;
    padding: 20px;
  }

  .hero-edition-card {
    border-radius: 18px;
    gap: 16px;
    grid-template-columns: minmax(0, 1fr) minmax(104px, 130px);
    margin-top: 28px;
    padding: 18px;
  }

  .edition-copy span {
    font-size: 0.68rem;
    margin-bottom: 12px;
    padding: 7px 11px;
  }

  .edition-copy h2 {
    font-size: clamp(1.55rem, 9vw, 2.1rem);
  }

  .edition-copy p {
    font-size: 0.94rem;
    margin-bottom: 18px;
  }

  .edition-button {
    font-size: 0.82rem;
    min-height: 42px;
    padding: 0 16px;
  }

  .hero-edition-card img {
    max-height: 205px;
  }

  .hero-stats-grid {
    gap: 10px;
  }

  .hero-stat-card {
    grid-template-columns: 38px 1fr;
    min-height: 74px;
    padding: 12px;
  }

  .hero-stat-card .fa {
    border-radius: 10px;
    height: 36px;
    width: 36px;
  }

  .hero-stat-card strong {
    font-size: 1.08rem;
  }

  .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-visit-counter {
    max-width: none;
    width: 100%;
  }

  .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) {
  .hero-edition-card {
    grid-template-columns: 1fr;
  }

  .hero-edition-card img {
    justify-self: center;
    max-height: 250px;
    max-width: 160px;
  }

  .hero-stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-stat-card.stat-wide {
    grid-column: auto;
  }

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

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


/* Editorial reading polish */
.article-lead,
.article-body p,
.section-article .article-lead,
.section-article .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 (min-width: 681px) {
  .section-article .article-lead,
  .section-article .article-body p,
  .section-article blockquote {
    text-align: justify;
  }
}

@media (max-width: 680px) {
  .article-lead,
  .article-body p,
  .section-article .article-lead,
  .section-article .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;
  }
}

/* Operational notes and history */
.section-note-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 44%, rgba(255, 255, 255, 0.2) 100%),
    var(--note-image, url("assets/optimized/home.jpg")) center / cover no-repeat;
  border-bottom: 1px solid var(--line);
  min-height: clamp(520px, 64vh, 760px);
  overflow: hidden;
  padding: calc(var(--header-height) + 72px) clamp(22px, 4.5vw, 80px) 84px;
  position: relative;
}

.operational-note-hero {
  align-items: center;
  display: flex;
  min-height: clamp(460px, 58vh, 640px);
}

.operational-note-page main {
  padding-top: var(--header-height);
}

.operational-note-page .section-note-hero,
.operational-note-page .category-hero {
  padding-top: clamp(72px, 8vw, 118px);
}

.operational-note-page .section-note-hero {
  align-items: center;
  display: flex;
  padding-left: clamp(22px, 6vw, 112px);
  padding-right: clamp(22px, 6vw, 112px);
}

.operational-note-page .section-note-copy {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(6, 34, 54, 0.09);
  border-radius: 22px;
  box-shadow: 0 26px 72px rgba(6, 34, 54, 0.12);
  max-width: 860px;
  padding: clamp(26px, 4vw, 52px);
}

.operational-note-hero .section-note-copy {
  margin: 0 auto;
  max-width: 1380px;
  width: 100%;
}

body.dark-mode .section-note-hero {
  background:
    linear-gradient(90deg, rgba(4, 21, 34, 0.97) 0%, rgba(4, 21, 34, 0.88) 46%, rgba(4, 21, 34, 0.28) 100%),
    var(--note-image, url("assets/optimized/home.jpg")) center / cover no-repeat;
}

body.dark-mode .operational-note-page .section-note-copy {
  background: rgba(7, 31, 48, 0.82);
  border-color: rgba(132, 247, 255, 0.14);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.32);
}

.section-note-overlay {
  background:
    radial-gradient(circle at 14% 30%, color-mix(in srgb, var(--section-accent) 16%, transparent), transparent 38%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.58));
  inset: 0;
  pointer-events: none;
  position: absolute;
}

body.dark-mode .section-note-overlay {
  background:
    radial-gradient(circle at 14% 30%, color-mix(in srgb, var(--section-accent) 24%, transparent), transparent 38%),
    linear-gradient(180deg, transparent, rgba(4, 21, 34, 0.74));
}

.section-note-copy {
  max-width: 920px;
  position: relative;
  z-index: 1;
}

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

.section-note-copy h1 {
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 7rem);
  letter-spacing: 0;
  line-height: 0.96;
  margin: 0 0 28px;
  max-width: 980px;
}

.operational-note-hero .section-note-copy h1 {
  font-size: clamp(2.8rem, 5.8vw, 5.9rem);
  max-width: 820px;
}

.operational-note-page .section-note-copy h1 {
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 1;
  max-width: 820px;
}

.operational-note-hero .section-note-copy p {
  max-width: 720px;
}

.operational-note-page .section-note-copy p {
  font-size: clamp(1.06rem, 1.45vw, 1.36rem);
  line-height: 1.55;
  max-width: 760px;
}

.section-note-copy p {
  color: var(--ink);
  font-size: clamp(1.18rem, 2.2vw, 2rem);
  line-height: 1.38;
  margin: 0 0 28px;
  max-width: 860px;
}

.section-note-copy time {
  color: var(--muted);
  display: block;
  font-size: 0.84rem;
  font-weight: 950;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.operational-category-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 54%, rgba(255, 255, 255, 0.2) 100%),
    var(--note-image, url("assets/optimized/home.jpg")) center / cover no-repeat;
}

body.dark-mode .operational-category-hero {
  background:
    linear-gradient(90deg, rgba(4, 21, 34, 0.98) 0%, rgba(4, 21, 34, 0.88) 54%, rgba(4, 21, 34, 0.24) 100%),
    var(--note-image, url("assets/optimized/home.jpg")) center / cover no-repeat;
}

.section-filter-row {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  padding: 0 clamp(20px, 4.5vw, 72px) 26px;
}

.section-filter {
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(6, 34, 54, 0.05);
  color: var(--ink);
  display: flex;
  font-size: 0.82rem;
  font-weight: 900;
  gap: 9px;
  justify-content: center;
  line-height: 1.18;
  min-height: 58px;
  padding: 12px 10px;
  text-align: center;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.section-filter i {
  color: var(--section-accent);
  font-size: 1rem;
  flex: 0 0 auto;
}

.section-filter:hover,
.section-filter.active {
  background: linear-gradient(135deg, rgba(0, 157, 167, 0.1), rgba(255, 255, 255, 0.96));
  border-color: color-mix(in srgb, var(--section-accent) 42%, var(--line));
  box-shadow: 0 18px 38px rgba(6, 34, 54, 0.09);
  transform: translateY(-2px);
}

.section-filter.active {
  color: var(--section-accent);
}

body.dark-mode .section-filter {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--ink);
}

body.dark-mode .section-filter:hover,
body.dark-mode .section-filter.active {
  background: rgba(0, 157, 167, 0.12);
}

.operational-history-shell {
  background: var(--paper);
}

.tmec-dashboard {
  background: var(--paper);
  display: grid;
  gap: 24px;
  margin: 0 auto;
  max-width: 1240px;
  padding: clamp(42px, 6vw, 76px) clamp(18px, 4vw, 44px) 84px;
}

.tmec-dashboard-intro,
.tmec-brief-panel,
.tmec-timeline,
.tmec-action-panel {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 22px 58px rgba(6, 34, 54, 0.08);
  padding: clamp(24px, 3vw, 38px);
}

.tmec-dashboard-intro {
  align-items: stretch;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
}

.tmec-dashboard h2 {
  color: var(--ink);
  font-size: clamp(1.7rem, 3.4vw, 3.1rem);
  line-height: 1.05;
  margin: 0 0 14px;
  max-width: 820px;
}

.tmec-dashboard p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.74;
  margin: 0;
}

.tmec-status-card {
  background:
    radial-gradient(circle at 88% 16%, color-mix(in srgb, var(--section-accent) 34%, transparent), transparent 34%),
    linear-gradient(145deg, #fff8e4, #ffffff);
  border: 1px solid color-mix(in srgb, var(--section-accent) 32%, transparent);
  border-radius: 20px;
  display: grid;
  min-height: 100%;
  padding: 24px;
}

.tmec-status-card span,
.tmec-signal-grid span,
.tmec-issue-grid span {
  color: var(--section-accent);
  display: block;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.tmec-status-card strong {
  color: var(--section-accent);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 0.95;
  margin-bottom: 14px;
}

.tmec-signal-grid,
.tmec-issue-grid {
  display: grid;
  gap: 16px;
}

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

.tmec-signal-grid > div,
.tmec-issue-grid > section {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(6, 34, 54, 0.06);
  padding: 24px;
}

.tmec-signal-grid strong {
  color: var(--ink);
  display: block;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.05;
  margin-bottom: 10px;
}

.tmec-brief-panel {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--section-accent) 12%, transparent), rgba(0, 157, 167, 0.07)),
    rgba(255, 255, 255, 0.92);
}

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

.tmec-issue-grid h3 {
  color: var(--ink);
  font-size: 1.16rem;
  line-height: 1.18;
  margin: 0 0 14px;
}

.tmec-issue-grid ul {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.tmec-issue-grid li {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.45;
  padding-left: 24px;
  position: relative;
}

.tmec-issue-grid li::before {
  background: var(--section-accent);
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 0.55em;
  width: 8px;
}

.tmec-timeline ol {
  border-left: 2px solid color-mix(in srgb, var(--section-accent) 34%, var(--line));
  display: grid;
  gap: 18px;
  list-style: none;
  margin: 24px 0 0 8px;
  padding: 0 0 0 24px;
}

.tmec-timeline li {
  display: grid;
  gap: 6px;
  position: relative;
}

.tmec-timeline li::before {
  background: var(--section-accent);
  border: 4px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--section-accent) 42%, transparent);
  content: "";
  height: 14px;
  left: -32px;
  position: absolute;
  top: 4px;
  width: 14px;
}

.tmec-timeline strong {
  color: var(--ink);
  font-size: 1rem;
}

.tmec-timeline span {
  color: var(--muted);
  line-height: 1.55;
}

.tmec-action-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

.tmec-action-list p {
  background: rgba(32, 169, 114, 0.08);
  border: 1px solid rgba(32, 169, 114, 0.18);
  border-radius: 14px;
  color: var(--ink);
  font-weight: 800;
  padding: 16px 16px 16px 44px;
  position: relative;
}

.tmec-action-list p::before {
  align-items: center;
  background: #20a972;
  border-radius: 50%;
  color: #fff;
  content: "\f00c";
  display: inline-flex;
  font: normal normal normal 12px/1 FontAwesome;
  height: 22px;
  justify-content: center;
  left: 14px;
  position: absolute;
  top: 17px;
  width: 22px;
}

.tmec-dashboard .article-source {
  justify-self: start;
}

body.dark-mode .tmec-dashboard-intro,
body.dark-mode .tmec-brief-panel,
body.dark-mode .tmec-timeline,
body.dark-mode .tmec-action-panel,
body.dark-mode .tmec-signal-grid > div,
body.dark-mode .tmec-issue-grid > section {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.12);
}

body.dark-mode .tmec-status-card {
  background:
    radial-gradient(circle at 88% 16%, color-mix(in srgb, var(--section-accent) 28%, transparent), transparent 34%),
    rgba(255, 255, 255, 0.055);
  border-color: color-mix(in srgb, var(--section-accent) 24%, transparent);
}

.tmec-dashboard-page .section-note-copy {
  background: transparent;
  backdrop-filter: none;
  border: 0;
  box-shadow: none;
  max-width: 900px;
  padding: clamp(34px, 4vw, 58px) 0 clamp(42px, 5vw, 72px);
}

.tmec-dashboard-page .section-note-hero {
  min-height: clamp(640px, 72vh, 820px);
}

.tmec-dashboard-page .section-note-copy h1 {
  text-shadow: 0 10px 34px rgba(255, 255, 255, 0.72);
}

.tmec-dashboard-page .section-note-copy p {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(6, 34, 54, 0.08);
  border-radius: 16px;
  box-shadow: 0 18px 46px rgba(6, 34, 54, 0.08);
  padding: 18px 20px;
}

body.dark-mode .tmec-dashboard-page .section-note-copy {
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.dark-mode .tmec-dashboard-page .section-note-copy h1 {
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
}

body.dark-mode .tmec-dashboard-page .section-note-copy p {
  background: rgba(7, 31, 48, 0.7);
  border-color: rgba(132, 247, 255, 0.12);
}

@media (max-width: 1120px) {
  .section-filter-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tmec-issue-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section-filter-row {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0 16px 22px;
    scroll-snap-type: x proximity;
  }

  .section-filter {
    flex: 0 0 210px;
    justify-content: flex-start;
    min-height: 54px;
    scroll-snap-align: start;
    text-align: left;
  }

  .tmec-dashboard-intro,
  .tmec-signal-grid,
  .tmec-action-list {
    grid-template-columns: 1fr;
  }

  .tmec-dashboard {
    padding-left: 16px;
    padding-right: 16px;
  }

  .tmec-dashboard-page .section-note-copy {
    padding: 24px 0 34px;
  }

  .tmec-dashboard-page .section-note-hero {
    min-height: 620px;
  }
}

@media (max-width: 680px) {
  .section-note-hero {
    min-height: 540px;
    padding: calc(var(--header-height) + 42px) 22px 58px;
  }

  .operational-note-page .section-note-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .operational-note-page .section-note-copy {
    border-radius: 18px;
    padding: 22px;
  }

  .section-note-copy h1 {
    font-size: clamp(2.6rem, 13vw, 4.8rem);
  }

  .operational-note-page .section-note-copy h1 {
    font-size: clamp(2.1rem, 10vw, 3.25rem);
  }

  .section-note-copy p {
    font-size: 1.2rem;
  }

  .operational-note-page .section-note-copy p {
    font-size: 1rem;
  }
}

.home-news-reel {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(6, 34, 54, 0.09);
  border-radius: 18px;
  box-shadow: 0 22px 50px rgba(6, 34, 54, 0.1);
  margin: clamp(118px, 11vw, 164px) auto 0;
  max-width: 1380px;
  padding: 20px;
  position: relative;
  width: 100%;
  z-index: 4;
}

.home-news-reel + .pulse-card {
  margin-top: 28px;
}

.news-reel-heading {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 16px;
}

.news-reel-heading p {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  margin: 0 0 5px;
  text-transform: uppercase;
}

.news-reel-heading h2 {
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  line-height: 1.08;
  margin: 0;
}

.news-reel-controls {
  display: flex;
  gap: 10px;
}

.news-reel-controls button {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 1.15rem;
  height: 40px;
  justify-content: center;
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  width: 40px;
}

.news-reel-controls button:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

.news-reel-track {
  display: grid;
  gap: 14px;
  grid-auto-columns: minmax(250px, 0.32fr);
  grid-auto-flow: column;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 2px 2px 14px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.news-reel-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  display: grid;
  grid-template-rows: 126px auto auto auto;
  min-height: 292px;
  overflow: hidden;
  scroll-snap-align: start;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.news-reel-card:hover {
  border-color: rgba(0, 157, 167, 0.34);
  box-shadow: 0 18px 34px rgba(6, 34, 54, 0.1);
  transform: translateY(-4px);
}

.news-reel-card img {
  display: block;
  height: 126px;
  object-fit: cover;
  width: 100%;
}

.news-reel-card span,
.news-reel-card h3,
.news-reel-card time {
  margin-left: 16px;
  margin-right: 16px;
}

.news-reel-card span {
  color: var(--teal);
  font-size: 0.64rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  margin-top: 14px;
  text-transform: uppercase;
}

.news-reel-card h3 {
  display: -webkit-box;
  font-size: 1rem;
  line-height: 1.18;
  margin-bottom: 14px;
  margin-top: 8px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.news-reel-card time {
  align-self: end;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

body.dark-mode .home-news-reel,
body.dark-mode .news-reel-card,
body.dark-mode .news-reel-controls button {
  background: rgba(7, 29, 48, 0.88);
  border-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1120px) {
  .home-news-reel {
    margin-top: 38px;
  }
}

@media (max-width: 680px) {
  .home-news-reel {
    border-radius: 16px;
    margin-top: 30px;
    padding: 18px 14px;
  }

  .news-reel-heading {
    align-items: flex-start;
  }

  .news-reel-controls {
    display: none;
  }

  .news-reel-track {
    grid-auto-columns: minmax(238px, 82%);
  }
}
