:root {
  color-scheme: dark;
  --font-display: "Segoe UI Variable Display", "Aptos Display", "Aptos", "Helvetica Neue", sans-serif;
  --font-sans: "Aptos", "Segoe UI Variable Text", "Segoe UI", sans-serif;
  --font-editorial: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --ease-premium: cubic-bezier(0.2, 0.7, 0, 1);
  --container: min(1320px, calc(100vw - 40px));
}

body[data-theme="dark"] {
  color-scheme: dark;
  --bg: #000000;
  --surface: #090b0f;
  --surface-strong: #0f141b;
  --surface-soft: #121821;
  --text: #f4f7fb;
  --muted: #a8b1bd;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.13);
  --accent: #57b4ff;
  --accent-soft: rgba(87, 180, 255, 0.14);
  --glow: 0 30px 80px rgba(26, 88, 145, 0.2);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.4);
}

body[data-theme="light"] {
  color-scheme: light;
  --bg: #ffffff;
  --surface: #f6f7f9;
  --surface-strong: #eef1f5;
  --surface-soft: #e8edf3;
  --text: #0f1318;
  --muted: #606977;
  --line: rgba(15, 19, 24, 0.08);
  --line-strong: rgba(15, 19, 24, 0.12);
  --accent: #1879d4;
  --accent-soft: rgba(24, 121, 212, 0.1);
  --glow: 0 22px 50px rgba(66, 125, 184, 0.08);
  --shadow: 0 24px 60px rgba(16, 24, 40, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.55;
  transition:
    background-color 0.55s var(--ease-premium),
    color 0.35s var(--ease-premium);
}

body[data-theme="dark"],
body[data-theme="dark"] .site-shell,
body[data-theme="dark"] main {
  background-color: #000000;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  width: 100%;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: var(--container);
  margin: 0 auto;
  padding: 18px 0 10px;
  background:
    linear-gradient(to bottom, color-mix(in srgb, var(--bg) 92%, transparent) 72%, transparent);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: clamp(120px, 12vw, 154px);
}

.brand-lockup__logo {
  display: none;
  width: 100%;
  height: auto;
  max-height: 42px;
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
}

body[data-theme="dark"] .brand-lockup__logo--dark,
body[data-theme="light"] .brand-lockup__logo--light {
  display: block;
}

.topnav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  overflow-x: auto;
  scrollbar-width: none;
}

.topnav::-webkit-scrollbar {
  display: none;
}

.topnav a,
.ghost-button,
.theme-toggle__button,
.tab,
.category-chip,
.text-link,
.mini-button,
.chip-button {
  transition:
    background-color 0.28s var(--ease-premium),
    color 0.28s var(--ease-premium),
    border-color 0.28s var(--ease-premium),
    transform 0.28s var(--ease-premium),
    box-shadow 0.28s var(--ease-premium);
}

.topnav a {
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.topnav a:hover,
.topnav a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--text);
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.region-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  color: var(--text);
  box-shadow: var(--shadow);
}

.region-pill__label {
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.region-pill strong {
  font-size: 0.9rem;
  font-weight: 600;
}

.ghost-button,
.theme-toggle,
.field select,
.field input,
.list-card,
.detail-panel,
.hub-panel,
.preview-card,
.feature-story,
.news-card,
.timeline-card__content,
.profile-card,
.talent-card,
.learning-card,
.comparison-card,
.ladder-card,
.mini-surface {
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.ghost-button {
  border-radius: 999px;
  padding: 11px 18px;
  background: transparent;
}

.ghost-button:hover,
.ghost-button:focus-visible,
.theme-toggle__button:hover,
.theme-toggle__button:focus-visible,
.tab:hover,
.tab:focus-visible,
.category-chip:hover,
.category-chip:focus-visible,
.chip-button:hover,
.chip-button:focus-visible,
.mini-button:hover,
.mini-button:focus-visible {
  transform: translateY(-1px);
  border-color: var(--line-strong);
}

.theme-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
}

.theme-toggle__button {
  border: 0;
  border-radius: 999px;
  padding: 9px 16px;
  background: transparent;
  color: var(--muted);
}

.theme-toggle__button[aria-pressed="true"] {
  background: var(--accent-soft);
  color: var(--text);
  box-shadow: var(--glow);
}

main {
  width: var(--container);
  margin: 0 auto;
  padding-bottom: 120px;
}

.hero,
.section,
.hub {
  padding: 72px 0 0;
}

.hero {
  min-height: 78vh;
  display: grid;
  align-items: center;
  gap: 36px;
}

.hero__content {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow,
.section-heading__eyebrow,
.preview-card__label,
.comparison-card__eyebrow,
.timeline-card__union,
.profile-card__side,
.ladder-card__step {
  margin: 0 0 14px;
  font-family: var(--font-editorial);
  font-size: 0.95rem;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 560;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.hero h1 {
  font-size: clamp(3.6rem, 10vw, 7.5rem);
  max-width: 11ch;
  margin: 0 auto;
}

.hero__lede,
.section-heading p,
.preview-card__description,
.list-card p,
.detail-block p,
.news-card p,
.talent-card p,
.learning-card p,
.comparison-card p,
.ladder-card p,
.mini-surface span,
.autosuggest__empty p {
  color: var(--muted);
}

.hero__lede {
  max-width: 46rem;
  margin: 22px auto 0;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.hero-search {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  width: min(860px, 100%);
  margin: 34px auto 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface-strong) 92%, transparent);
  box-shadow: var(--shadow);
}

.hero-search input,
.hero-search button,
.field input,
.field select {
  border: 0;
  outline: none;
}

.hero-search input,
.field input,
.field select {
  width: 100%;
  background: transparent;
  color: var(--text);
}

.hero-search input {
  padding: 14px 20px;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
}

.hero-search input::placeholder,
.field input::placeholder {
  color: color-mix(in srgb, var(--muted) 82%, transparent);
}

.hero-search button,
.text-link,
.mini-button,
.chip-button,
.tab,
.category-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
}

.hero-search button {
  padding: 0 24px;
  background: var(--accent-soft);
  color: var(--text);
}

.hero__chips,
.hero__stats,
.tag-row,
.button-row,
.tabbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__chips {
  justify-content: center;
  margin-top: 20px;
}

.chip-button,
.mini-button,
.category-chip,
.tab,
.text-link {
  padding: 10px 16px;
  background: transparent;
  color: var(--muted);
}

.chip-button:hover,
.chip-button:focus-visible,
.tab.is-active,
.category-chip.is-active,
.mini-button {
  background: var(--accent-soft);
  color: var(--text);
}

.hero__stats {
  justify-content: center;
  margin-top: 8px;
}

.stat-pill,
.tag,
.mini-tag {
  padding: 8px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  border: 1px solid var(--line);
  color: var(--muted);
}

.autosuggest {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  display: grid;
  gap: 8px;
  z-index: 5;
}

.autosuggest__item,
.autosuggest__empty {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 14px 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-strong) 96%, transparent);
  box-shadow: var(--shadow);
  text-align: left;
}

.autosuggest__item:hover,
.autosuggest__item:focus-visible {
  border-color: var(--line-strong);
}

.autosuggest__category {
  color: var(--accent);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.autosuggest__label {
  color: var(--text);
}

.section-heading,
.detail-panel__header {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
}

.section-heading--compact h3,
.detail-panel__header h3,
.feature-story h3,
.comparison-card h3,
.perspective-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2vw, 2.15rem);
  font-weight: 560;
  letter-spacing: -0.05em;
}

.preview-grid,
.profile-grid,
.talent-grid,
.learning-grid,
.perspective-grid,
.ladder-grid,
.insight-grid,
.comparison-grid,
.comp-grid,
.news-layout,
.hub-layout {
  display: grid;
  gap: 20px;
}

.preview-grid {
  grid-template-columns: repeat(12, 1fr);
}

.preview-card {
  grid-column: span 4;
  display: grid;
  gap: 24px;
  min-height: 280px;
  padding: 24px;
  border-radius: var(--radius-lg);
}

.preview-card:nth-child(1),
.preview-card:nth-child(4) {
  grid-column: span 6;
}

.preview-card__list {
  display: grid;
  gap: 10px;
}

.preview-card__list span {
  color: var(--text);
}

.text-link {
  justify-self: start;
}

.hub-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
}

.hub-panel,
.detail-panel,
.feature-story,
.comparison-card {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.detail-panel {
  position: sticky;
  top: 98px;
  align-self: start;
}

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

.field {
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.field span {
  font-size: 0.92rem;
}

.field input,
.field select {
  padding: 16px 18px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface-strong) 96%, transparent);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.field--inline {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.field--inline input {
  width: 24px;
  height: 24px;
}

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

.list-card,
.news-card,
.profile-card,
.talent-card,
.learning-card,
.ladder-card,
.mini-surface,
.perspective-card {
  padding: 22px;
  border-radius: var(--radius-md);
}

.list-card,
.profile-card {
  width: 100%;
  text-align: left;
}

.list-card.is-active,
.profile-card.is-active {
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  box-shadow: var(--glow);
}

.list-card__meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 10px;
}

.list-card h3,
.news-card h3,
.profile-card h3,
.talent-card h3,
.learning-card h3,
.ladder-card h4 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 540;
  letter-spacing: -0.03em;
}

.detail-block + .detail-block {
  margin-top: 18px;
}

.detail-block h4,
.news-card__notes strong,
.split-note h4,
.signal-block h4 {
  margin: 0 0 8px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.detail-grid,
.split-note,
.news-layout,
.comp-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-grid,
.split-note,
.insight-grid {
  display: grid;
  gap: 14px;
}

.mini-surface {
  min-height: 100%;
}

.mini-surface p {
  margin: 0 0 6px;
}

.mini-surface__label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.comparison-grid {
  grid-template-columns: 1.15fr 1fr 1fr;
  margin-top: 20px;
}

.comparison-card p:last-child {
  margin-bottom: 0;
}

.news-layout {
  align-items: start;
}

.feature-story {
  min-height: 100%;
}

.news-card__notes {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-card {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 18px;
}

.timeline-card__rail {
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), transparent);
}

.timeline-card__content {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.signal-block {
  margin: 18px 0;
  padding: 18px;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--accent-soft) 62%, transparent);
}

.profile-grid,
.talent-grid,
.learning-grid,
.perspective-grid,
.ladder-grid,
.insight-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.profile-card,
.talent-card,
.learning-card,
.ladder-card {
  min-height: 100%;
}

.talent-card__salary,
.talent-card__status {
  margin-top: 16px;
  color: var(--text);
  font-weight: 600;
}

.perspective-card {
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 90%, transparent);
}

.split-note--stack {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ladder-card {
  position: relative;
  overflow: hidden;
}

.ladder-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -50% auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  pointer-events: none;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s var(--ease-premium),
    transform 0.7s var(--ease-premium);
}

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

@media (max-width: 1080px) {
  .topbar {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
  }

  .hub-layout,
  .comp-grid,
  .news-layout,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .detail-panel {
    position: static;
  }

  .preview-card,
  .preview-card:nth-child(1),
  .preview-card:nth-child(4) {
    grid-column: span 6;
  }
}

@media (max-width: 780px) {
  :root {
    --container: min(100vw - 24px, 1320px);
  }

  .hero,
  .section,
  .hub {
    padding-top: 56px;
  }

  .hero {
    min-height: auto;
    padding-top: 32px;
  }

  .hero-search {
    grid-template-columns: 1fr;
    border-radius: 30px;
  }

  .hero-search button {
    min-height: 52px;
  }

  .control-grid,
  .detail-grid,
  .split-note,
  .split-note--stack {
    grid-template-columns: 1fr;
  }

  .preview-grid,
  .profile-grid,
  .talent-grid,
  .learning-grid,
  .perspective-grid,
  .ladder-grid {
    grid-template-columns: 1fr;
  }

  .preview-card,
  .preview-card:nth-child(1),
  .preview-card:nth-child(4) {
    grid-column: span 12;
  }

  .topbar__actions {
    width: 100%;
    justify-content: space-between;
  }

  .theme-toggle {
    flex: 1;
    justify-content: space-between;
  }

  .theme-toggle__button {
    flex: 1;
  }

  .ghost-button {
    min-width: 94px;
  }

  .topnav {
    width: 100%;
    justify-content: flex-start;
    padding-bottom: 4px;
  }
}

/* Premium redesign overrides */

html {
  scroll-padding-top: 110px;
}

body[data-theme="dark"] {
  --shell: rgba(7, 10, 15, 0.74);
  --shell-strong: rgba(11, 15, 22, 0.92);
  --panel: rgba(14, 19, 27, 0.82);
  --panel-muted: rgba(11, 15, 21, 0.7);
  --edge: rgba(123, 154, 193, 0.18);
  --depth-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

body[data-theme="light"] {
  --shell: rgba(248, 249, 251, 0.92);
  --shell-strong: rgba(244, 247, 250, 0.98);
  --panel: rgba(255, 255, 255, 0.9);
  --panel-muted: rgba(246, 247, 249, 0.94);
  --edge: rgba(24, 121, 212, 0.12);
  --depth-shadow: 0 28px 72px rgba(17, 24, 39, 0.09);
}

body {
  background:
    radial-gradient(circle at top, color-mix(in srgb, var(--accent-soft) 55%, transparent) 0%, transparent 28%),
    var(--bg);
}

.site-shell {
  padding-bottom: 48px;
}

.topbar {
  width: min(1380px, calc(100vw - 32px));
  margin-top: 10px;
  padding: 8px 14px;
  border: 1px solid color-mix(in srgb, var(--line) 88%, transparent);
  border-radius: 30px;
  background: color-mix(in srgb, var(--bg) 94%, var(--shell-strong));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
  isolation: isolate;
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, color-mix(in srgb, var(--bg) 86%, transparent) 0%, color-mix(in srgb, var(--bg) 96%, transparent) 100%);
  z-index: 0;
}

.topbar > * {
  position: relative;
  z-index: 1;
}

.brand-lockup {
  width: clamp(86px, 8vw, 112px);
}

.topnav {
  gap: 8px;
}

.topnav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.82rem;
  color: color-mix(in srgb, var(--muted) 88%, var(--text) 12%);
}

.topnav a:hover,
.topnav a:focus-visible {
  background: color-mix(in srgb, var(--accent-soft) 44%, transparent);
}

.topnav a.is-current {
  background: color-mix(in srgb, var(--accent-soft) 52%, transparent);
  color: var(--text);
}

main {
  display: grid;
  gap: 28px;
  padding-top: 18px;
}

.hero,
.section,
.hub {
  padding-top: 0;
}

.hero {
  gap: 16px;
  min-height: auto;
}

.hero__frame,
.section,
.hub {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 38px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--shell-strong) 94%, transparent) 0%, color-mix(in srgb, var(--shell) 92%, transparent) 100%);
  box-shadow: var(--depth-shadow);
}

.hero__frame::before,
.section::before,
.hub::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, var(--edge) 0%, transparent 26%),
    radial-gradient(circle at top right, color-mix(in srgb, var(--accent-soft) 65%, transparent) 0%, transparent 38%);
  opacity: 0.95;
}

.hero__frame > *,
.section > *,
.hub > * {
  position: relative;
  z-index: 1;
}

.hero__frame {
  display: grid;
  gap: 28px;
  padding: 48px;
}

.hero__content {
  max-width: 920px;
}

.hero h1 {
  max-width: 15ch;
  font-size: clamp(2.55rem, 5.4vw, 4.85rem);
}

.hero__lede {
  max-width: 52rem;
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
}

.hero-search {
  width: min(920px, 100%);
  margin-top: 28px;
  padding: 10px;
  border-radius: 24px;
  background: color-mix(in srgb, var(--panel) 92%, transparent);
  border: 1px solid var(--line-strong);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.hero-search button {
  padding: 0 22px;
  font-weight: 600;
}

.hero__chips {
  justify-content: flex-start;
}

.hero__stats {
  justify-content: flex-start;
}

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

.hero-panel {
  display: grid;
  gap: 18px;
  min-height: 100%;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--panel) 96%, transparent) 0%, color-mix(in srgb, var(--panel-muted) 92%, transparent) 100%);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
}

.hero-panel--lead {
  grid-column: span 7;
  min-height: 270px;
}

.hero-panel--map {
  grid-column: span 5;
  min-height: 270px;
}

.hero-panel--compact {
  grid-column: span 6;
}

.hero-panel__eyebrow,
.preview-card__metric {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-panel h2,
.preview-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 2.25rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero-panel p:last-of-type,
.preview-card__list span {
  color: var(--muted);
}

.hero-panel__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-panel__media {
  position: relative;
  overflow: hidden;
  min-height: clamp(150px, 24vw, 210px);
  border-radius: 22px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-strong) 92%, transparent);
}

.hero-panel__media img,
.hero-panel__media .news-card__placeholder,
.hero-panel__media .media-link {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-panel__media img {
  object-fit: cover;
}

.hero-panel__meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-soft) 55%, transparent);
  color: var(--text);
}

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

.topbar__actions {
  gap: 6px;
  justify-self: end;
}

.ghost-button {
  min-height: 32px;
  padding: 5px 10px;
  font-size: 0.79rem;
}

.theme-toggle {
  padding: 2px;
  background: color-mix(in srgb, var(--surface) 76%, transparent);
}

.theme-toggle__button {
  min-height: 28px;
  padding: 4px 8px;
  font-size: 0.76rem;
}

.region-pill {
  min-height: 30px;
  padding: 4px 8px;
  border-color: color-mix(in srgb, var(--line) 84%, transparent);
  background: color-mix(in srgb, var(--surface) 86%, transparent);
}

.region-pill__label {
  font-size: 0.64rem;
}

.region-pill strong {
  font-size: 0.8rem;
}

.hero-panel__jump {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: color-mix(in srgb, var(--panel-muted) 90%, transparent);
  text-align: left;
}

.section,
.hub {
  display: grid;
  gap: 26px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.7fr);
  align-items: end;
  gap: 24px;
  margin-bottom: 0;
}

.section-heading > div {
  max-width: 42rem;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.section-heading p {
  max-width: 36rem;
}

.preview-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(185px, auto);
  gap: 16px;
}

.preview-card {
  min-height: 0;
  padding: 24px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--panel) 96%, transparent) 0%, color-mix(in srgb, var(--panel-muted) 92%, transparent) 100%);
}

.preview-card--feature {
  grid-column: span 6;
  grid-row: span 2;
}

.preview-card--tall {
  grid-column: span 3;
  grid-row: span 2;
}

.preview-card--wide {
  grid-column: span 6;
}

.preview-card--compact {
  grid-column: span 3;
}

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

.preview-card__label {
  margin-bottom: 0;
}

.preview-card__media {
  position: relative;
  overflow: hidden;
  min-height: 188px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-strong) 92%, transparent);
}

.preview-card__media--feature {
  min-height: 228px;
}

.preview-card__media img,
.preview-card__media .news-card__placeholder,
.preview-card__media .media-link {
  display: block;
  width: 100%;
  height: 100%;
}

.preview-card__media img {
  object-fit: cover;
}

.preview-card__meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.preview-card__list {
  align-content: start;
}

.preview-card__list span {
  display: block;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.text-link {
  background: color-mix(in srgb, var(--accent-soft) 58%, transparent);
  color: var(--text);
}

.hub-layout {
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: 18px;
}

.hub-panel,
.detail-panel,
.feature-story,
.comparison-card,
.perspective-card,
.timeline-card__content,
.profile-card,
.talent-card,
.learning-card,
.list-card,
.mini-surface,
.ladder-card,
.news-card {
  border-radius: 28px;
  border-color: var(--line);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--panel) 96%, transparent) 0%, color-mix(in srgb, var(--panel-muted) 92%, transparent) 100%);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.hub-panel,
.detail-panel,
.feature-story,
.comparison-card {
  padding: 26px;
}

.detail-panel {
  top: 120px;
}

.control-grid {
  gap: 12px;
}

#research-filters.control-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

#agreement-controls.control-grid {
  grid-template-columns: 1fr;
}

#talent-controls.control-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.field input,
.field select {
  padding: 14px 16px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--panel-muted) 96%, transparent);
}

.stack-list {
  gap: 12px;
}

#agreement-list.stack-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#professional-list.profile-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#union-feed.timeline {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.list-card,
.profile-card,
.news-card,
.talent-card,
.learning-card,
.ladder-card,
.perspective-card {
  display: grid;
  gap: 12px;
}

.list-card h3,
.news-card h3,
.profile-card h3,
.talent-card h3,
.learning-card h3,
.ladder-card h4 {
  font-size: 1.18rem;
  line-height: 1.1;
}

.detail-panel__header,
.section-heading--compact {
  gap: 12px;
}

.detail-meta,
.list-card__meta {
  gap: 8px;
}

.detail-meta span,
.list-card__meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface-soft) 44%, transparent);
}

.detail-block {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.detail-block + .detail-block {
  margin-top: 16px;
}

.detail-grid,
.split-note,
.insight-grid {
  gap: 12px;
}

.tag-row {
  gap: 8px;
}

.tag,
.mini-tag,
.stat-pill {
  background: color-mix(in srgb, var(--surface-soft) 48%, transparent);
}

.stat-pill {
  display: grid;
  gap: 4px;
  min-width: 180px;
  padding: 14px 16px;
  border-radius: 20px;
}

.stat-pill span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
}

.stat-pill strong {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.tabbar {
  width: fit-content;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--panel-muted) 92%, transparent);
}

.tab {
  border-color: transparent;
}

.tab.is-active,
.category-chip.is-active,
.chip-button:hover,
.chip-button:focus-visible,
.mini-button,
.text-link:hover,
.text-link:focus-visible {
  box-shadow: none;
}

.news-layout {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 18px;
}

.feature-story {
  min-height: 100%;
}

.signal-block {
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--accent-soft) 52%, transparent);
}

.timeline-card {
  grid-template-columns: 12px 1fr;
}

.timeline-card__content {
  padding: 22px;
}

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

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

.comparison-grid {
  grid-template-columns: minmax(0, 0.9fr) repeat(2, minmax(0, 1fr));
  align-items: start;
}

.comp-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
}

.autosuggest {
  top: calc(100% + 10px);
}

.autosuggest__item,
.autosuggest__empty {
  border-radius: 20px;
}

@media (max-width: 1180px) {
  .hero__panels,
  .preview-grid,
  .talent-grid,
  .learning-grid,
  #union-feed.timeline,
  #agreement-list.stack-list,
  #professional-list.profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-panel--lead,
  .hero-panel--map,
  .hero-panel--compact,
  .preview-card--feature,
  .preview-card--tall,
  .preview-card--wide,
  .preview-card--compact {
    grid-column: auto;
    grid-row: auto;
  }

  #research-filters.control-grid,
  #talent-controls.control-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .topbar {
    width: min(100vw - 24px, 1380px);
    border-radius: 28px;
  }

  .section-heading,
  .hub-layout,
  .news-layout,
  .comparison-grid,
  .comp-grid {
    grid-template-columns: 1fr;
  }

  .detail-panel {
    position: static;
  }
}

@media (max-width: 780px) {
  main {
    gap: 18px;
  }

  .hero__frame,
  .section,
  .hub {
    padding: 22px;
    border-radius: 28px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 10vw, 3.35rem);
  }

  .hero-search {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .topbar__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__chips,
  .hero__stats {
    justify-content: flex-start;
  }

  .hero__panels,
  .preview-grid,
  .talent-grid,
  .learning-grid,
  #union-feed.timeline,
  #agreement-list.stack-list,
  #professional-list.profile-grid,
  #research-filters.control-grid,
  #talent-controls.control-grid,
  .hero-panel__link-grid {
    grid-template-columns: 1fr;
  }

  .tabbar {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
  }
}

.text-link--inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.headline-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.24s var(--ease-premium);
}

.headline-link:hover,
.headline-link:focus-visible {
  color: var(--accent);
}

.media-link {
  display: block;
  width: 100%;
  height: 100%;
}

.media-link img,
.media-link .news-card__placeholder {
  width: 100%;
  height: 100%;
}

.detail-block__note {
  margin-top: 12px;
}

.list-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.list-card__source {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.source-identity {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-soft) 40%, transparent);
}

.source-identity--compact {
  padding: 7px 10px;
}

.source-identity__logo {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.9);
}

.source-identity__label {
  color: var(--text);
  font-size: 0.82rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-status {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: color-mix(in srgb, var(--panel) 92%, transparent);
}

.news-status p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.news-status__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent-soft) 42%, transparent);
}

.news-status--fallback .news-status__dot {
  background: #f3bf63;
  box-shadow: 0 0 0 6px rgba(243, 191, 99, 0.12);
}

.feature-story--news {
  display: grid;
  grid-template-columns: minmax(132px, 0.44fr) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}

.feature-story__body,
.news-card__body {
  display: grid;
  align-content: start;
  gap: 8px;
}

.learning-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}

.learning-card__media {
  overflow: hidden;
  min-height: 160px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--accent-soft) 70%, transparent) 0%, transparent 70%),
    color-mix(in srgb, var(--surface-soft) 72%, transparent);
}

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

.learning-card__media--placeholder {
  display: grid;
  place-items: end start;
  padding: 16px;
}

.learning-card__media--placeholder span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.24);
  color: var(--text);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-story__body > .source-identity,
.news-card__body > .source-identity {
  margin-top: -4px;
}

.news-card {
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.news-card__media {
  position: relative;
  min-height: 92px;
  overflow: hidden;
  border-radius: 14px;
  background:
    radial-gradient(circle at top left, color-mix(in srgb, var(--accent-soft) 70%, transparent) 0%, transparent 55%),
    linear-gradient(180deg, color-mix(in srgb, var(--surface-soft) 56%, transparent) 0%, color-mix(in srgb, var(--panel-muted) 90%, transparent) 100%);
  border: 1px solid var(--line);
}

.news-card__media--feature {
  min-height: 156px;
}

.news-card__media img,
.news-card__placeholder {
  width: 100%;
  height: 100%;
}

.news-card__media img {
  display: block;
  object-fit: cover;
}

.news-card__placeholder {
  display: grid;
  place-items: end start;
  padding: 12px;
  background:
    linear-gradient(160deg, rgba(68, 176, 255, 0.14) 0%, rgba(68, 176, 255, 0.04) 45%, transparent 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 100%);
}

.news-card__placeholder span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.24);
  color: var(--text);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.feature-story {
  padding: 14px;
}

.feature-story h3 {
  font-size: 1.08rem;
}

.feature-story__body > p,
.news-card__body > p,
.news-card__notes p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.46;
}

.feature-story__body .tag-row,
.news-card__body .tag-row {
  gap: 6px;
}

.feature-story__body .tag,
.news-card__body .tag {
  padding: 4px 8px;
  font-size: 0.7rem;
}

[data-theme="light"] .news-card__placeholder span {
  background: rgba(255, 255, 255, 0.78);
}

.feature-story--empty {
  grid-column: 1 / -1;
}

@media (max-width: 980px) {
  .feature-story--news,
  .news-card {
    grid-template-columns: 1fr;
  }

  .news-card__media {
    min-height: 190px;
  }
}

.splash-page {
  overflow: hidden;
}

.splash-shell {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background: #000000;
}

.splash-video {
  position: relative;
  z-index: 1;
  width: min(420px, calc(100vw - 280px));
  max-height: 30vh;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: contain;
  border-radius: 34px;
  opacity: 0.88;
  filter: saturate(1.04) contrast(1.02) brightness(1.08);
  transition:
    opacity 0.45s var(--ease-premium),
    filter 0.45s var(--ease-premium);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
}

.splash-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.08) 54%, rgba(0, 0, 0, 0.2) 100%);
}

.splash-content,
.entry-card {
  position: relative;
  z-index: 1;
}

body.splash-ready .splash-video {
  cursor: pointer;
  opacity: 0.96;
  filter: saturate(1.08) contrast(1.03) brightness(1.14);
}

body.splash-entry-open .splash-video {
  cursor: default;
}

.splash-content {
  display: grid;
  justify-items: center;
  gap: 18px;
  width: min(760px, calc(100vw - 48px));
  text-align: center;
}

.splash-logo {
  width: min(420px, 64vw);
  height: auto;
}

.splash-kicker,
.entry-card__eyebrow {
  margin: 0;
  color: #57b4ff;
  font-family: var(--font-editorial);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.splash-content h1,
.entry-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 560;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.splash-content h1 {
  font-size: clamp(3.3rem, 10vw, 7rem);
}

.splash-copy,
.entry-card p {
  margin: 0;
  max-width: 42rem;
  color: rgba(244, 247, 251, 0.78);
  font-size: clamp(1rem, 2vw, 1.14rem);
}

.splash-actions,
.entry-card__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.entry-pill,
.entry-back,
.splash-link {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  transition:
    transform 0.28s var(--ease-premium),
    border-color 0.28s var(--ease-premium),
    background-color 0.28s var(--ease-premium);
}

.entry-pill,
.entry-back {
  background: rgba(10, 16, 24, 0.72);
  color: #f4f7fb;
  padding: 13px 20px;
}

.entry-pill--primary {
  background: rgba(87, 180, 255, 0.16);
  border-color: rgba(87, 180, 255, 0.3);
}

.splash-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  color: rgba(244, 247, 251, 0.82);
  background: rgba(0, 0, 0, 0.34);
}

.entry-pill:hover,
.entry-back:hover,
.splash-link:hover {
  transform: translateY(-1px);
  border-color: rgba(87, 180, 255, 0.38);
}

.entry-card {
  position: absolute;
  bottom: 34px;
  width: min(680px, calc(100vw - 48px));
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 7, 12, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 26px 100px rgba(0, 0, 0, 0.4);
}

.entry-card.is-hidden,
.entry-card__step.is-hidden {
  display: none;
}

.entry-card__step {
  display: grid;
  gap: 16px;
}

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

.entry-pill {
  width: 100%;
  text-align: center;
}

.entry-back {
  justify-self: start;
  margin-top: 4px;
}

@media (max-width: 780px) {
  .region-pill {
    justify-content: center;
    width: 100%;
  }

  .splash-shell {
    padding: 20px;
  }

  .splash-video {
    width: min(360px, calc(100vw - 40px));
    max-height: 24vh;
    border-radius: 24px;
  }

  .entry-card {
    bottom: 20px;
    width: calc(100vw - 24px);
    padding: 22px;
  }

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

/* Compact refinement pass */

main {
  gap: 22px;
}

.hero__frame,
.section,
.hub {
  padding: 26px;
  border-radius: 32px;
}

.hero__frame {
  gap: 22px;
  padding: 34px;
}

.hero-search {
  margin-top: 20px;
  padding: 8px;
  border-radius: 22px;
}

.hero-panel {
  gap: 14px;
  padding: 20px;
  border-radius: 24px;
}

.hero-panel--lead,
.hero-panel--map {
  min-height: 232px;
}

.hero-panel__meta span {
  padding: 7px 10px;
}

.hero-panel__jump {
  padding: 10px 12px;
  border-radius: 16px;
}

.section,
.hub {
  gap: 20px;
}

.section-heading {
  gap: 18px;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.hero__panels,
.preview-grid,
.hub-layout,
.news-layout,
.comparison-grid,
.comp-grid,
.talent-grid,
.learning-grid,
.stack-list,
.news-stack,
.control-grid {
  gap: 14px;
}

.preview-card,
.hub-panel,
.detail-panel,
.feature-story,
.comparison-card {
  padding: 20px;
  border-radius: 24px;
}

.list-card,
.news-card,
.profile-card,
.talent-card,
.learning-card,
.ladder-card,
.mini-surface,
.perspective-card,
.timeline-card__content {
  gap: 10px;
  padding: 18px;
  border-radius: 22px;
}

.field input,
.field select {
  padding: 12px 14px;
  border-radius: 14px;
}

.detail-block {
  padding-top: 14px;
}

.detail-block + .detail-block {
  margin-top: 14px;
}

.detail-meta span,
.list-card__meta span,
.tag,
.mini-tag,
.source-identity,
.source-identity--compact {
  padding-top: 6px;
  padding-bottom: 6px;
}

.stat-pill {
  min-width: 164px;
  padding: 12px 14px;
  border-radius: 18px;
}

.news-card {
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 12px;
}

.news-card__media {
  min-height: 136px;
  border-radius: 18px;
}

.feature-story--news {
  gap: 18px;
}

.signal-block {
  padding: 14px 16px;
}

.topbar {
  gap: 18px;
}

.topnav {
  gap: 18px;
}

.region-pill {
  min-height: 34px;
  padding: 7px 10px;
}

@media (max-width: 780px) {
  main {
    gap: 16px;
  }

  .hero__frame,
  .section,
  .hub {
    padding: 18px;
    border-radius: 24px;
  }

  .hero__frame {
    padding: 22px;
  }

  .preview-card,
  .hub-panel,
  .detail-panel,
  .feature-story,
  .comparison-card,
  .list-card,
  .news-card,
  .profile-card,
  .talent-card,
  .learning-card,
  .ladder-card,
  .mini-surface,
  .perspective-card,
  .timeline-card__content,
  .hero-panel {
    padding: 16px;
    border-radius: 18px;
  }

  .news-card__media {
    min-height: 172px;
  }
}

/* Compact refinement pass II */

body {
  font-size: 0.95rem;
}

main {
  gap: 16px;
  padding-top: 10px;
}

.topbar {
  gap: 10px;
  padding: 8px 14px;
}

.brand-lockup {
  width: clamp(86px, 8vw, 112px);
}

.topnav {
  gap: 8px;
}

.topnav a {
  min-height: 34px;
  padding: 7px 11px;
  font-size: 0.82rem;
}

.topbar__actions {
  gap: 6px;
}

.ghost-button {
  min-height: 32px;
  padding: 5px 10px;
  font-size: 0.79rem;
}

.region-pill {
  min-height: 30px;
  padding: 4px 8px;
  gap: 6px;
}

.region-pill__label {
  font-size: 0.64rem;
}

.region-pill strong {
  font-size: 0.8rem;
}

.theme-toggle {
  padding: 2px;
}

.theme-toggle__button {
  min-height: 28px;
  padding: 4px 8px;
  font-size: 0.76rem;
}

.hero__frame,
.section,
.hub {
  padding: 20px;
  border-radius: 26px;
}

.hero__frame {
  gap: 18px;
  padding: 26px;
}

.hero h1 {
  font-size: clamp(1.95rem, 3.8vw, 3.2rem);
}

.hero__lede,
.section-heading p,
.preview-card__description,
.list-card p,
.news-card p,
.talent-card p,
.learning-card p,
.comparison-card p,
.ladder-card p {
  font-size: 0.92rem;
}

.hero-search {
  margin-top: 16px;
  padding: 6px;
  border-radius: 18px;
}

.hero-search input,
.hero-search button {
  min-height: 44px;
}

.hero-panel {
  gap: 12px;
  padding: 16px;
  border-radius: 20px;
}

.hero-panel--lead,
.hero-panel--map {
  min-height: 204px;
}

.hero-panel h2,
.preview-card h3 {
  font-size: clamp(1.2rem, 1.7vw, 1.7rem);
}

.hero-panel__meta,
.hero-panel__link-grid,
.hero__panels,
.preview-grid,
.hub-layout,
.news-layout,
.comparison-grid,
.comp-grid,
.talent-grid,
.learning-grid,
.stack-list,
.news-stack,
.control-grid,
.section-heading {
  gap: 12px;
}

.hero-panel__meta span,
.detail-meta span,
.list-card__meta span,
.tag,
.mini-tag {
  padding: 5px 9px;
  font-size: 0.74rem;
}

.hero-panel__jump {
  padding: 9px 11px;
  border-radius: 14px;
}

.section,
.hub {
  gap: 16px;
}

.section-heading h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
}

.preview-card,
.hub-panel,
.detail-panel,
.feature-story,
.comparison-card {
  padding: 14px;
  border-radius: 20px;
}

.list-card,
.news-card,
.profile-card,
.talent-card,
.learning-card,
.ladder-card,
.mini-surface,
.perspective-card,
.timeline-card__content {
  gap: 8px;
  padding: 14px;
  border-radius: 18px;
}

.list-card h3,
.news-card h3,
.profile-card h3,
.talent-card h3,
.learning-card h3,
.ladder-card h4 {
  font-size: 0.98rem;
}

.field input,
.field select {
  padding: 10px 12px;
  border-radius: 12px;
}

.tabbar {
  padding: 3px;
}

.tab,
.category-chip,
.chip-button,
.mini-button,
.text-link {
  font-size: 0.82rem;
}

.tab,
.category-chip,
.chip-button,
.mini-button {
  padding: 8px 12px;
}

.stat-pill {
  min-width: 146px;
  padding: 10px 12px;
  border-radius: 16px;
}

.stat-pill span {
  font-size: 0.74rem;
}

.stat-pill strong {
  font-size: 0.92rem;
}

.source-identity {
  gap: 8px;
  padding: 6px 10px;
}

.source-identity__logo {
  width: 16px;
  height: 16px;
}

.source-identity__label {
  font-size: 0.76rem;
}

.news-card {
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 10px;
}

.news-card__media {
  min-height: 92px;
  border-radius: 14px;
}

.news-card__placeholder {
  padding: 12px;
}

.feature-story--news {
  grid-template-columns: minmax(132px, 0.44fr) minmax(0, 1fr);
  gap: 14px;
}

.news-status {
  gap: 8px;
  padding: 9px 12px;
  border-radius: 18px;
}

.signal-block {
  padding: 12px 14px;
}

.feature-story h3 {
  font-size: 1.08rem;
}

.feature-story__body,
.news-card__body {
  gap: 8px;
}

.feature-story__body > p,
.news-card__body > p,
.news-card__notes p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.46;
}

.feature-story__body .tag-row,
.news-card__body .tag-row {
  gap: 6px;
}

.feature-story__body .tag,
.news-card__body .tag {
  padding: 4px 8px;
  font-size: 0.7rem;
}

.entry-card {
  width: min(600px, calc(100vw - 48px));
  padding: 22px;
  border-radius: 24px;
}

.entry-card__step {
  gap: 14px;
}

.entry-pill,
.entry-back {
  padding: 11px 16px;
}

@media (max-width: 780px) {
  body {
    font-size: 0.93rem;
  }

  .hero__frame,
  .section,
  .hub {
    padding: 16px;
    border-radius: 20px;
  }

  .hero__frame {
    padding: 18px;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  .preview-card,
  .hub-panel,
  .detail-panel,
  .feature-story,
  .comparison-card,
  .list-card,
  .news-card,
  .profile-card,
  .talent-card,
  .learning-card,
  .ladder-card,
  .mini-surface,
  .perspective-card,
  .timeline-card__content,
  .hero-panel {
    padding: 13px;
    border-radius: 16px;
  }

  .news-card__media {
    min-height: 150px;
  }

  .entry-card {
    width: calc(100vw - 24px);
    padding: 18px;
  }
}

/* AI workspace */

.ai-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 14px;
  align-items: start;
}

.ai-form {
  display: grid;
  gap: 12px;
}

.field textarea {
  width: 100%;
  min-height: 180px;
  resize: vertical;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  background: var(--surface-strong);
  color: var(--text-primary);
  font: inherit;
  line-height: 1.6;
  transition:
    border-color var(--transition-base),
    background-color var(--transition-base),
    box-shadow var(--transition-base);
}

.field textarea:focus {
  outline: none;
  border-color: rgba(87, 180, 255, 0.52);
  box-shadow: 0 0 0 1px rgba(87, 180, 255, 0.28);
}

.field textarea::placeholder {
  color: var(--text-muted);
}

.ai-prompt-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ai-response-panel {
  min-height: 100%;
}

.ai-response {
  min-height: 320px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.ai-response__state {
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 20px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: var(--surface-strong);
  color: var(--text-secondary);
  text-align: left;
}

.ai-response__state p {
  margin: 0;
  max-width: 36rem;
}

.ai-response__state--error {
  color: #f4c272;
}

.ai-answer {
  display: grid;
  gap: 12px;
}

.ai-answer p {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: var(--surface-strong);
  color: var(--text-primary);
}

.ai-error-stack {
  display: grid;
  gap: 10px;
}

.ai-error-stack p {
  margin: 0;
}

@media (max-width: 980px) {
  .ai-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .ai-response {
    min-height: 0;
  }

  .field textarea {
    min-height: 160px;
  }
}

/* Regional relevance refresh */

body {
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    radial-gradient(circle at 18% 18%, color-mix(in srgb, var(--accent-soft) 32%, transparent) 0%, transparent 26%),
    radial-gradient(circle at 82% 12%, color-mix(in srgb, var(--accent-soft) 22%, transparent) 0%, transparent 20%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.22'/%3E%3C/svg%3E");
  background-size: auto, auto, 210px 210px;
  mix-blend-mode: soft-light;
}

.splash-page::before {
  display: none;
}

body[data-theme="dark"] {
  --accent: #3ea8ef;
  --accent-soft: rgba(62, 168, 239, 0.15);
}

body[data-theme="light"] {
  --accent: #2f9fe8;
  --accent-soft: rgba(47, 159, 232, 0.12);
}

.splash-kicker,
.entry-card__eyebrow {
  color: var(--accent);
}

.topbar {
  gap: 18px;
  padding: 12px 0 8px;
  align-items: center;
  grid-template-columns: minmax(112px, auto) 1fr auto;
}

.brand-lockup {
  width: clamp(96px, 10vw, 128px);
}

.topnav {
  gap: 18px;
  justify-content: center;
}

.topnav a {
  font-size: 0.84rem;
  padding: 7px 0;
}

.topbar__actions {
  gap: 7px;
  align-items: center;
  justify-content: flex-start;
  justify-self: start;
  margin-left: -12px;
}

.region-pill {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas:
    "label value"
    "label meta";
  column-gap: 6px;
  row-gap: 1px;
  min-height: 32px;
  padding: 5px 9px;
  align-items: center;
}

.region-pill__meta {
  grid-area: meta;
  color: var(--muted);
  font-size: 0.7rem;
  white-space: nowrap;
}

.region-pill__label {
  grid-area: label;
  margin-right: 2px;
}

.region-pill strong {
  grid-area: value;
  line-height: 1;
}

.theme-toggle {
  display: inline-grid;
  grid-auto-flow: column;
  gap: 3px;
  padding: 3px;
  min-height: 32px;
}

.theme-toggle__button {
  width: 32px;
  min-width: 32px;
  min-height: 26px;
  padding: 0;
  font-size: 0;
  line-height: 1;
}

.theme-toggle__button::before {
  font-size: 0.96rem;
}

.theme-toggle__button[data-theme-choice="light"]::before {
  content: "💡";
}

.theme-toggle__button[data-theme-choice="dark"]::before {
  content: "☾";
}

.ghost-button {
  min-width: 64px;
  text-align: center;
}

.splash-shell {
  background: #ffffff;
}

.splash-page,
.splash-page body,
.splash-page main,
body.splash-page,
body.splash-page .splash-shell {
  background: #ffffff !important;
}

.splash-page::before,
body.splash-page::before {
  display: none !important;
  background: none !important;
}

.splash-video {
  opacity: 1;
  filter: none;
  box-shadow: none;
}

.splash-overlay {
  background: transparent;
}

body.splash-ready .splash-video {
  opacity: 1;
  filter: none;
}

.entry-card {
  border-color: rgba(15, 19, 24, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 80px rgba(16, 24, 40, 0.14);
}

.entry-pill,
.entry-back {
  border-color: rgba(15, 19, 24, 0.1);
  background: rgba(255, 255, 255, 0.86);
  color: #0f1318;
}

.entry-card p {
  color: rgba(15, 19, 24, 0.72);
}

.entry-pill--primary {
  background: color-mix(in srgb, var(--accent-soft) 90%, white 10%);
  border-color: rgba(62, 168, 239, 0.26);
}

.section-heading {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.section-heading > div,
.section-heading p {
  max-width: 48rem;
}

.section-heading--compact {
  justify-items: start;
  text-align: left;
}

.hero__panels {
  gap: 14px;
}

.hero-panel {
  gap: 14px;
  padding: 18px;
}

.hero-panel--signal,
.hero-panel--region,
.hero-panel--map {
  grid-column: span 4;
  min-height: 0;
}

.hero-panel--compact {
  grid-column: span 6;
}

.hero-panel__list {
  display: grid;
  gap: 8px;
}

.hero-panel__list span {
  padding-top: 8px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-panel__jump {
  display: block;
}

.hero-panel[data-jump],
.preview-card[data-jump],
.feature-story[data-open-url],
.news-card[data-open-url],
.learning-card[data-open-url],
.talent-card[data-open-url] {
  cursor: pointer;
}

.hero-panel[data-jump]:hover,
.preview-card[data-jump]:hover,
.feature-story[data-open-url]:hover,
.news-card[data-open-url]:hover,
.learning-card[data-open-url]:hover,
.talent-card[data-open-url]:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
}

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

.feature-story--news {
  grid-template-columns: minmax(126px, 168px) minmax(0, 1fr);
  gap: 12px;
}

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

.news-card {
  grid-template-columns: 96px minmax(0, 1fr);
}

.resource-desk-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 95%, transparent) 0%, color-mix(in srgb, var(--surface-soft) 92%, transparent) 100%);
  box-shadow: var(--shadow);
}

.resource-desk-card__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
}

.resource-desk-card h3,
.resource-link-card strong {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.04em;
}

.resource-desk-card__header > div:first-child {
  display: grid;
  gap: 8px;
}

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

.resource-group {
  display: grid;
  gap: 10px;
}

.resource-group__label {
  margin: 0;
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.resource-group__list {
  display: grid;
  gap: 10px;
}

.resource-link-card {
  display: grid;
  gap: 8px;
  min-height: 100%;
  padding: 13px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-strong) 90%, transparent);
}

.resource-link-card:hover,
.resource-link-card:focus-visible {
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.weather-chip {
  display: grid;
  gap: 3px;
  min-width: 160px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--accent-soft) 55%, transparent);
}

.weather-chip span {
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}

.weather-chip strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

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

@media (max-width: 1180px) {
  .hero-panel--signal,
  .hero-panel--region,
  .hero-panel--map,
  .hero-panel--compact {
    grid-column: span 6;
  }

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

@media (max-width: 980px) {
  .resource-desk-card__header,
  .resource-desk-grid,
  .news-stack {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .hero-panel--signal,
  .hero-panel--region,
  .hero-panel--map,
  .hero-panel--compact {
    grid-column: 1 / -1;
  }

  .feature-story--news,
  .news-card,
  .sector-grid {
    grid-template-columns: 1fr;
  }

  .weather-chip {
    min-width: 0;
  }
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s var(--ease-premium);
}

body.is-loading {
  overflow: hidden;
}

.page-loader.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.page-loader__card {
  display: grid;
  justify-items: center;
  gap: 14px;
  min-width: min(420px, calc(100vw - 48px));
  padding: 24px 26px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: var(--shadow);
}

.page-loader__mark {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 3px solid color-mix(in srgb, var(--accent-soft) 68%, transparent);
  border-top-color: var(--accent);
  animation: page-loader-spin 0.9s linear infinite;
}

.page-loader__label {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  text-align: center;
}

@keyframes page-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

.splash-shell {
  justify-items: center;
  align-content: center;
}

.splash-video {
  display: block;
  margin-inline: auto;
  align-self: center;
  justify-self: center;
}

.entry-card {
  left: 50%;
  transform: translateX(-50%);
}

.hero__panels {
  gap: 12px;
}

.hero-panel__list,
.preview-card__list {
  gap: 6px;
}

.hero-panel__list span,
.preview-card__list span {
  padding-top: 0;
  border-top: 0;
}

.hero-panel__meta span,
.detail-meta span,
.list-card__meta span,
.tag,
.mini-tag,
.source-identity,
.source-identity--compact {
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-soft) 28%, transparent);
  box-shadow: none;
}

.stat-pill {
  min-width: 0;
  padding: 12px 14px;
  border-radius: 18px;
  box-shadow: none;
}

.resource-link-card {
  gap: 6px;
  padding: 12px;
}

.feature-story__body,
.news-card__body,
.learning-card,
.list-card,
.talent-card {
  gap: 8px;
}

.signal-block {
  padding: 12px 14px;
  border-radius: 18px;
}

.section-heading p,
.hero__lede {
  max-width: 34rem;
}

.theme-toggle__button[data-theme-choice="light"]::before {
  content: "\1F4A1";
}

.theme-toggle__button[data-theme-choice="dark"]::before {
  content: "\263E";
}

@media (max-width: 820px) {
  :root {
    --container: min(100vw - 20px, 1320px);
  }

  .site-shell {
    padding-top: 8px;
  }

  main {
    width: min(100vw - 20px, 1320px);
    gap: 16px;
    padding-bottom: 72px;
  }

  .topbar {
    width: min(100vw - 20px, 1320px);
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand actions"
      "nav nav";
    gap: 10px 12px;
    padding: 8px 0 6px;
    align-items: center;
  }

  .brand-lockup {
    grid-area: brand;
    width: 110px;
  }

  .topnav {
    grid-area: nav;
    justify-content: flex-start;
    gap: 14px;
    padding: 2px 2px 4px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .topnav a {
    white-space: nowrap;
    font-size: 0.82rem;
    padding: 8px 0;
  }

  .topbar__actions {
    grid-area: actions;
    justify-self: end;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    margin-left: 0;
  }

  .topbar__actions .ghost-button {
    display: none;
  }

  .region-pill {
    width: auto;
    min-height: 30px;
    padding: 6px 10px;
    grid-template-areas: "value";
    grid-template-columns: auto;
    border-radius: 999px;
  }

  .region-pill__label,
  .region-pill__meta {
    display: none;
  }

  .region-pill strong {
    font-size: 0.8rem;
  }

  .theme-toggle {
    min-height: 30px;
    padding: 2px;
  }

  .theme-toggle__button {
    width: 30px;
    min-width: 30px;
    min-height: 26px;
  }

  .hero,
  .section,
  .hub {
    gap: 14px;
  }

  .hero__frame,
  .section,
  .hub {
    padding: 18px 16px;
    border-radius: 24px;
  }

  .hero__frame {
    gap: 16px;
  }

  .hero__content {
    max-width: none;
    margin: 0;
    text-align: left;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
  }

  .hero h1 {
    max-width: 10ch;
    margin: 0;
    font-size: clamp(2rem, 10.8vw, 2.85rem);
    line-height: 0.98;
  }

  .hero__lede {
    max-width: 27rem;
    margin: 12px 0 0;
    font-size: 0.95rem;
  }

  .hero-search {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 16px;
    padding: 8px;
    border-radius: 18px;
  }

  .hero-search input {
    padding: 12px 14px;
    font-size: 1rem;
  }

  .hero-search button {
    width: 100%;
    min-height: 44px;
    padding: 0 16px;
  }

  .autosuggest {
    left: 0;
    right: 0;
  }

  .hero__chips,
  .tabbar {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    padding-bottom: 2px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
  }

  .hero__chips::-webkit-scrollbar,
  .tabbar::-webkit-scrollbar {
    display: none;
  }

  .chip-button,
  .mini-button,
  .category-chip,
  .tab,
  .text-link {
    white-space: nowrap;
    padding: 8px 12px;
    font-size: 0.82rem;
  }

  .hero__stats,
  .hero__panels,
  .preview-grid,
  .hub-layout,
  .news-layout,
  .news-stack,
  .talent-grid,
  .learning-grid,
  .comparison-grid,
  .comp-grid,
  .resource-desk-grid,
  .sector-grid,
  #union-feed.timeline,
  #agreement-list.stack-list,
  #professional-list.profile-grid,
  #research-filters.control-grid,
  #talent-controls.control-grid,
  .hero-panel__link-grid {
    grid-template-columns: 1fr;
  }

  .hero__stats {
    display: grid;
    gap: 10px;
  }

  .stat-pill {
    min-width: 0;
    padding: 12px 14px;
    border-radius: 18px;
  }

  .hero-panel,
  .preview-card,
  .hub-panel,
  .detail-panel,
  .feature-story,
  .comparison-card,
  .perspective-card,
  .timeline-card__content,
  .profile-card,
  .talent-card,
  .learning-card,
  .list-card,
  .mini-surface,
  .ladder-card,
  .news-card,
  .resource-desk-card {
    padding: 16px;
    gap: 10px;
    border-radius: 22px;
  }

  .hero-panel h2,
  .preview-card h3,
  .feature-story h3,
  .news-card h3 {
    font-size: 1.28rem;
  }

  .hero-panel__media,
  .preview-card__media,
  .preview-card__media--feature,
  .news-card__media,
  .learning-card__media {
    min-height: 140px;
    border-radius: 16px;
  }

  .feature-story--news,
  .news-card,
  .resource-desk-card__header {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .weather-chip {
    min-width: 0;
    padding: 14px;
    border-radius: 18px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    text-align: center;
  }

  .section-heading h2 {
    font-size: clamp(1.7rem, 8.4vw, 2.35rem);
  }

  .section-heading p {
    font-size: 0.94rem;
  }

  .section-heading--compact {
    justify-items: start;
    text-align: left;
  }

  .news-status {
    padding: 10px 12px;
    border-radius: 16px;
  }

  .list-card__footer,
  .learning-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-loader__card {
    min-width: min(320px, calc(100vw - 32px));
    padding: 20px 18px;
    border-radius: 20px;
  }

  .splash-shell {
    padding: 16px;
  }

  .splash-video {
    width: min(74vw, 260px);
    max-height: none;
    border-radius: 18px;
  }

  .entry-card {
    bottom: 14px;
    width: min(92vw, 430px);
    padding: 18px;
    border-radius: 20px;
  }

  .entry-card h2 {
    font-size: 1.45rem;
  }

  .entry-card p {
    font-size: 0.94rem;
  }

  .province-grid,
  .sector-grid {
    grid-template-columns: 1fr;
  }

  .entry-card__actions {
    gap: 10px;
  }

  .entry-pill,
  .entry-back {
    width: 100%;
    min-height: 44px;
    padding: 12px 14px;
    justify-content: center;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  :root {
    --container: min(100vw - 16px, 1320px);
  }

  main,
  .topbar {
    width: min(100vw - 16px, 1320px);
  }

  .brand-lockup {
    width: 102px;
  }

  .topnav {
    gap: 12px;
  }

  .topnav a {
    font-size: 0.79rem;
  }

  .region-pill {
    padding: 5px 9px;
  }

  .region-pill strong {
    font-size: 0.75rem;
  }

  .theme-toggle__button {
    width: 28px;
    min-width: 28px;
    min-height: 24px;
  }

  .hero__frame,
  .section,
  .hub {
    padding: 16px 14px;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 11vw, 2.55rem);
  }

  .hero__lede,
  .section-heading p {
    font-size: 0.91rem;
  }

  .hero-search input {
    padding: 11px 12px;
  }

  .hero-panel,
  .preview-card,
  .hub-panel,
  .detail-panel,
  .feature-story,
  .comparison-card,
  .perspective-card,
  .timeline-card__content,
  .profile-card,
  .talent-card,
  .learning-card,
  .list-card,
  .mini-surface,
  .ladder-card,
  .news-card,
  .resource-desk-card {
    padding: 14px;
  }

  .hero-panel__media,
  .preview-card__media,
  .preview-card__media--feature,
  .news-card__media,
  .learning-card__media {
    min-height: 128px;
  }

  .splash-video {
    width: min(78vw, 228px);
  }

  .entry-card {
    width: calc(100vw - 16px);
    bottom: 8px;
    padding: 16px;
  }
}

.splash-page,
.splash-shell {
  min-height: 100svh;
}

.entry-card {
  max-height: calc(100vh - 40px);
  max-height: calc(100svh - 40px);
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.entry-card__step {
  align-content: start;
}

.entry-card__actions {
  align-items: stretch;
}

.entry-pill,
.entry-back {
  line-height: 1.2;
  white-space: normal;
  text-wrap: balance;
}

@media (max-width: 820px) {
  .splash-video {
    width: min(92vw, 392px);
    border-radius: 20px;
  }

  .entry-card {
    top: 50%;
    bottom: auto;
    width: min(92vw, 430px);
    max-height: calc(100svh - 20px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    padding-top: 18px;
    padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    transform: translate(-50%, -50%);
  }

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

  .entry-card__step {
    gap: 12px;
  }
}

@media (max-width: 420px) {
  .splash-video {
    width: min(94vw, 340px);
    border-radius: 18px;
  }

  .entry-card {
    width: calc(100vw - 12px);
    max-height: calc(100svh - 12px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    padding: 14px 14px calc(14px + env(safe-area-inset-bottom, 0px));
    border-radius: 18px;
  }

  .entry-card h2 {
    font-size: 1.28rem;
    line-height: 1.02;
  }

  .entry-card p {
    font-size: 0.9rem;
  }

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

body.is-mobile-nav-open {
  overflow: hidden;
}

.topbar__menu-button,
.mobile-menu,
.mobile-menu-backdrop {
  display: none;
}

.topbar__menu-button {
  align-items: center;
  justify-content: center;
  width: 36px;
  min-width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  color: var(--text);
  box-shadow: var(--shadow);
}

.topbar__menu-icon {
  display: inline-grid;
  gap: 3px;
}

.topbar__menu-icon span {
  display: block;
  width: 14px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.28s var(--ease-premium),
    opacity 0.2s var(--ease-premium);
}

body.is-mobile-nav-open .topbar__menu-icon span:nth-child(1) {
  transform: translateY(4.5px) rotate(45deg);
}

body.is-mobile-nav-open .topbar__menu-icon span:nth-child(2) {
  opacity: 0;
}

body.is-mobile-nav-open .topbar__menu-icon span:nth-child(3) {
  transform: translateY(-4.5px) rotate(-45deg);
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 34;
  background: color-mix(in srgb, var(--bg) 42%, transparent);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s var(--ease-premium);
}

.mobile-menu {
  position: fixed;
  top: calc(10px + env(safe-area-inset-top, 0px));
  left: 10px;
  right: 10px;
  z-index: 35;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: color-mix(in srgb, var(--surface) 95%, transparent);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px) scale(0.985);
  transition:
    opacity 0.28s var(--ease-premium),
    transform 0.28s var(--ease-premium);
}

body.is-mobile-nav-open .mobile-menu,
body.is-mobile-nav-open .mobile-menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.is-mobile-nav-open .mobile-menu {
  transform: translateY(0) scale(1);
}

@media (max-width: 820px) {
  .topbar {
    width: min(100vw - 20px, 1320px);
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 6px 0 4px;
  }

  .brand-lockup {
    width: 104px;
  }

  .topnav {
    display: none;
  }

  .topbar__actions {
    gap: 8px;
    justify-self: end;
  }

  .topbar__actions .ghost-button,
  .topbar__actions .theme-toggle {
    display: none;
  }

  .topbar__menu-button,
  .mobile-menu,
  .mobile-menu-backdrop {
    display: block;
  }

  .topbar__menu-button {
    display: inline-flex;
  }

  .region-pill {
    min-height: 32px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    gap: 0;
    border-radius: 999px;
    white-space: nowrap;
  }

  .region-pill__label,
  .region-pill__meta {
    display: none;
  }

  .region-pill strong {
    font-size: 0.78rem;
    line-height: 1;
  }

  .mobile-menu__header,
  .mobile-menu__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .mobile-menu__context {
    display: grid;
    gap: 2px;
  }

  .mobile-menu__label {
    color: var(--muted);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-menu__region {
    font-size: 1.02rem;
    line-height: 1;
  }

  .mobile-menu__meta {
    color: var(--muted);
    font-size: 0.8rem;
  }

  .mobile-menu__close {
    border: 0;
    padding: 8px 10px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--text);
  }

  .mobile-menu__links {
    display: grid;
    gap: 8px;
    margin: 12px 0;
  }

  .mobile-menu__links a {
    display: block;
    padding: 11px 13px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: color-mix(in srgb, var(--surface-strong) 88%, transparent);
    color: var(--muted);
    font-size: 0.94rem;
  }

  .mobile-menu__links a.is-current {
    border-color: color-mix(in srgb, var(--accent) 26%, var(--line));
    background: var(--accent-soft);
    color: var(--text);
  }

  .mobile-menu__search {
    min-width: 0;
    flex: 1;
    min-height: 40px;
    padding: 0 14px;
    text-align: center;
  }

  .mobile-menu__theme {
    flex-shrink: 0;
    display: inline-grid;
  }

  .mobile-menu__theme .theme-toggle__button {
    width: 32px;
    min-width: 32px;
    min-height: 28px;
  }
}

@media (max-width: 480px) {
  .topbar {
    width: min(100vw - 16px, 1320px);
    gap: 6px;
    padding-top: 4px;
  }

  .brand-lockup {
    width: 98px;
  }

  .region-pill {
    min-height: 30px;
    padding: 0 10px;
  }

  .region-pill strong {
    font-size: 0.74rem;
  }

  .topbar__menu-button {
    width: 34px;
    min-width: 34px;
    height: 34px;
  }

  .mobile-menu {
    top: calc(8px + env(safe-area-inset-top, 0px));
    left: 8px;
    right: 8px;
    padding: 12px;
    border-radius: 20px;
  }

  .mobile-menu__close {
    padding: 7px 9px;
    font-size: 0.82rem;
  }

  .mobile-menu__region {
    font-size: 0.96rem;
  }

  .mobile-menu__meta {
    font-size: 0.76rem;
  }

  .mobile-menu__links a {
    padding: 10px 12px;
    border-radius: 14px;
    font-size: 0.9rem;
  }

  .mobile-menu__footer {
    gap: 8px;
  }

  .mobile-menu__search {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.86rem;
  }
}

/* Final mobile fit pass */
@media (max-width: 820px) {
  html,
  body {
    overflow-x: hidden;
  }

  body {
    -webkit-text-size-adjust: 100%;
  }

  .site-shell {
    overflow-x: clip;
    padding-top: max(6px, env(safe-area-inset-top, 0px));
  }

  main {
    width: calc(100vw - 16px);
    max-width: 100%;
    gap: 14px;
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
  }

  .topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100vw - 16px);
    max-width: 100%;
    min-height: 38px;
    gap: 8px;
    padding: 5px 8px;
    margin-top: 6px;
    border-radius: 20px;
    border-color: color-mix(in srgb, var(--line) 82%, transparent);
    background: color-mix(in srgb, var(--bg) 96%, var(--shell-strong));
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  }

  .brand-lockup {
    justify-content: flex-start;
    flex: 0 0 auto;
    width: 138px;
    overflow: hidden;
  }

  .brand-lockup__logo {
    max-height: 38px;
    transform: scale(1.22) translateY(1px);
    transform-origin: left center;
  }

  .topbar__actions {
    margin-left: auto;
    gap: 6px;
    flex: 0 0 auto;
    min-width: 0;
  }

  .region-pill {
    max-width: calc(100vw - 196px);
    min-height: 28px;
    padding: 0 9px;
    box-shadow: none;
  }

  .region-pill strong {
    display: block;
    overflow: hidden;
    max-width: 100%;
    font-size: 0.72rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .topbar__menu-button {
    width: 32px;
    min-width: 32px;
    height: 32px;
    box-shadow: none;
  }

  .topbar__menu-icon span {
    width: 13px;
  }

  .hero,
  .section,
  .hub {
    padding-top: 12px;
    gap: 12px;
  }

  .hero__frame,
  .section,
  .hub {
    padding: 14px 12px;
    border-radius: 20px;
  }

  .hero__frame {
    gap: 14px;
  }

  .hero__content {
    max-width: none;
    text-align: left;
  }

  .eyebrow,
  .section-heading__eyebrow {
    margin-bottom: 8px;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  .hero h1,
  .section-heading h2,
  .detail-panel__header h3 {
    overflow-wrap: anywhere;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(1.56rem, 8vw, 2rem);
    line-height: 0.92;
  }

  .hero__lede,
  .section-heading p,
  .detail-panel p {
    max-width: none;
    font-size: 0.84rem;
  }

  .section-heading,
  .detail-panel__header {
    margin-bottom: 16px;
    gap: 8px;
    justify-items: center;
    text-align: center;
  }

  .section-heading--compact {
    justify-items: center;
    text-align: center;
  }

  .hero-search {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 7px;
    margin-top: 12px;
    padding: 7px;
    border-radius: 14px;
  }

  .hero-search input,
  .hero-search button,
  .field input,
  .field select {
    width: 100%;
    min-width: 0;
  }

  .hero-search input,
  .field input,
  .field select {
    padding: 11px 12px;
    border-radius: 13px;
  }

  .hero-search button {
    min-width: 108px;
    min-height: 40px;
    border-radius: 13px;
  }

  .autosuggest {
    left: 0;
    right: 0;
    max-height: min(52vh, 360px);
  }

  .preview-grid,
  .hub-layout,
  .news-layout,
  .hero__stats,
  .hero__panels,
  .profile-grid,
  .talent-grid,
  .learning-grid,
  .perspective-grid,
  .ladder-grid,
  .insight-grid,
  .comparison-grid,
  .comp-grid,
  .detail-grid,
  .split-note,
  .split-note--stack,
  .resource-desk-grid,
  .hero-panel__link-grid,
  .sector-grid,
  .province-grid,
  #research-filters.control-grid,
  #talent-controls.control-grid,
  #agreement-controls.control-grid,
  #professional-list.profile-grid,
  #union-feed.timeline {
    grid-template-columns: 1fr;
  }

  .hub-layout,
  .news-layout,
  .preview-grid,
  .hero__stats,
  .hero__panels,
  .stack-list,
  .news-stack,
  .timeline,
  .profile-grid,
  .talent-grid,
  .learning-grid,
  .comparison-grid,
  .comp-grid {
    gap: 12px;
  }

  .preview-card,
  .hero-panel,
  .hub-panel,
  .detail-panel,
  .feature-story,
  .comparison-card,
  .perspective-card,
  .timeline-card__content,
  .profile-card,
  .talent-card,
  .learning-card,
  .list-card,
  .mini-surface,
  .ladder-card,
  .news-card,
  .resource-desk-card,
  .signal-block,
  .weather-chip {
    min-height: 0;
    padding: 15px;
    gap: 9px;
    border-radius: 18px;
    box-shadow: none;
  }

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

  .hero-panel h2,
  .preview-card h3,
  .feature-story h3,
  .news-card h3,
  .list-card h3,
  .profile-card h3,
  .talent-card h3,
  .learning-card h3 {
    font-size: 1.06rem;
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .detail-panel {
    position: static;
    top: auto;
    align-self: auto;
  }

  .feature-story--news,
  .news-card,
  .resource-desk-card__header,
  .timeline-card {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .timeline-card__rail {
    display: none;
  }

  .timeline-card {
    gap: 0;
  }

  .hero-panel__media,
  .preview-card__media,
  .preview-card__media--feature,
  .news-card__media,
  .learning-card__media {
    min-height: 0;
    aspect-ratio: 1.35 / 1;
    border-radius: 14px;
    overflow: hidden;
  }

  .hero-panel__media img,
  .preview-card__media img,
  .news-card__media img,
  .learning-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .tabbar,
  .hero__chips {
    gap: 8px;
    padding-bottom: 2px;
    margin-inline: -2px;
    padding-inline: 2px;
  }

  .chip-button,
  .mini-button,
  .category-chip,
  .tab,
  .text-link {
    min-height: 32px;
    padding: 7px 10px;
    font-size: 0.75rem;
    border-radius: 999px;
  }

  .news-status {
    padding: 10px 11px;
    border-radius: 14px;
    font-size: 0.82rem;
  }

  .list-card__meta,
  .detail-meta {
    gap: 7px;
    margin-bottom: 8px;
    font-size: 0.8rem;
  }

  .list-card__footer,
  .learning-card__footer {
    gap: 8px;
    flex-direction: column;
    align-items: stretch;
  }

  .field {
    gap: 8px;
  }

  .field span {
    font-size: 0.82rem;
  }

  .field--inline {
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .field--inline input {
    width: 20px;
    height: 20px;
  }

  .stat-pill {
    min-width: 0;
    padding: 12px 13px;
    border-radius: 16px;
    box-shadow: none;
  }

  .stat-pill span {
    font-size: 0.72rem;
  }

  .stat-pill strong {
    font-size: 0.92rem;
  }

  .mobile-menu {
    top: calc(8px + env(safe-area-inset-top, 0px));
    left: 8px;
    right: 8px;
    max-height: calc(100svh - 16px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    overflow: auto;
    padding: 12px;
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
  }

  .mobile-menu__header {
    align-items: flex-start;
  }

  .mobile-menu__close {
    width: 34px;
    min-width: 34px;
    height: 34px;
    padding: 0;
    font-size: 1.2rem;
    line-height: 1;
  }

  .mobile-menu__links {
    gap: 7px;
    margin: 10px 0 12px;
  }

  .mobile-menu__links a {
    padding: 10px 12px;
    font-size: 0.88rem;
    border-radius: 13px;
  }

  .mobile-menu__footer {
    align-items: stretch;
    gap: 8px;
  }

  .mobile-menu__search {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.84rem;
    box-shadow: none;
  }
}

@media (max-width: 480px) {
  main,
  .topbar {
    width: calc(100vw - 12px);
  }

  .brand-lockup {
    width: 128px;
  }

  .region-pill {
    max-width: calc(100vw - 180px);
    padding-inline: 9px;
  }

  .topbar__menu-button {
    width: 30px;
    min-width: 30px;
    height: 30px;
  }

  .hero__frame,
  .section,
  .hub {
    padding: 14px 12px;
    border-radius: 18px;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(1.46rem, 8.1vw, 1.82rem);
  }

  .hero__lede,
  .section-heading p {
    font-size: 0.82rem;
  }

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

  .hero-search button {
    min-width: 0;
    width: 100%;
  }

  .section-heading h2 {
    font-size: clamp(1.34rem, 7.6vw, 1.68rem);
  }

  .preview-card,
  .hero-panel,
  .hub-panel,
  .detail-panel,
  .feature-story,
  .comparison-card,
  .perspective-card,
  .timeline-card__content,
  .profile-card,
  .talent-card,
  .learning-card,
  .list-card,
  .mini-surface,
  .ladder-card,
  .news-card,
  .resource-desk-card,
  .signal-block,
  .weather-chip {
    padding: 13px;
    border-radius: 16px;
  }

  .hero-panel__media,
  .preview-card__media,
  .preview-card__media--feature,
  .news-card__media,
  .learning-card__media {
    aspect-ratio: 1.22 / 1;
  }

  .chip-button,
  .mini-button,
  .category-chip,
  .tab,
  .text-link {
    min-height: 32px;
    padding: 7px 10px;
    font-size: 0.76rem;
  }

  .mobile-menu {
    left: 6px;
    right: 6px;
    padding: 10px;
    border-radius: 16px;
  }

  .mobile-menu__footer {
    flex-direction: column;
  }

  .mobile-menu__theme {
    display: flex;
    width: 100%;
    justify-content: stretch;
  }

  .mobile-menu__theme .theme-toggle__button {
    width: 100%;
    min-width: 0;
    flex: 1;
  }
}

/* Apple-style mobile art direction */
@media (max-width: 820px) {
  .topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    justify-content: initial;
    justify-items: stretch;
    width: calc(100vw - 20px);
    min-height: 46px;
    padding: 6px 10px;
    border-radius: 24px;
    border-color: color-mix(in srgb, var(--line) 72%, transparent);
    background: color-mix(in srgb, var(--bg) 98%, var(--shell-strong));
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    backdrop-filter: blur(20px);
  }

  .brand-lockup {
    justify-self: start;
    width: 154px;
  }

  .brand-lockup__logo {
    max-height: 44px;
    transform: none;
  }

  .topbar__actions {
    display: inline-flex;
    gap: 8px;
    width: max-content;
    justify-self: end;
    justify-content: flex-end;
  }

  .topbar__actions .region-pill {
    display: none;
  }

  .topbar__menu-button {
    width: 36px;
    min-width: 36px;
    height: 36px;
    border-color: color-mix(in srgb, var(--line) 86%, transparent);
    background: color-mix(in srgb, var(--surface) 96%, transparent);
    border-width: 1px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset;
  }

  .topbar__menu-icon span {
    width: 15px;
  }

  .hero {
    gap: 10px;
  }

  .hero__frame {
    padding: 20px 18px 18px;
    border-radius: 26px;
  }

  .hero h1 {
    max-width: 10.5ch;
    font-size: clamp(1.4rem, 6.9vw, 1.82rem);
    line-height: 0.92;
    letter-spacing: -0.075em;
    text-wrap: balance;
  }

  .hero__lede {
    max-width: 20rem;
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .hero-search {
    margin-top: 10px;
    padding: 6px;
    border-radius: 18px;
    box-shadow: none;
  }

  .hero-search input {
    min-height: 44px;
    padding: 12px 14px;
    font-size: 0.98rem;
  }

  .hero-search button {
    min-width: 96px;
    min-height: 44px;
  }

  .hero__chips {
    display: none;
  }

  .hero__stats {
    display: none;
  }

  .hero__panels .hero-panel:not(:first-child) {
    display: none;
  }

  .hero-panel {
    padding: 16px;
    border-radius: 20px;
  }

  .hero-panel__media,
  .preview-card__media,
  .preview-card__media--feature,
  .news-card__media,
  .learning-card__media {
    aspect-ratio: 1.5 / 1;
  }

  .section,
  .hub {
    padding: 18px 16px;
    border-radius: 24px;
  }

  .section-heading {
    margin-bottom: 14px;
  }

  .section-heading h2 {
    font-size: clamp(1.46rem, 6.8vw, 1.86rem);
    letter-spacing: -0.06em;
  }

  .preview-card,
  .hub-panel,
  .detail-panel,
  .feature-story,
  .comparison-card,
  .perspective-card,
  .timeline-card__content,
  .profile-card,
  .talent-card,
  .learning-card,
  .list-card,
  .mini-surface,
  .ladder-card,
  .news-card,
  .resource-desk-card,
  .signal-block,
  .weather-chip {
    padding: 16px;
    border-radius: 20px;
  }

  .mobile-menu-backdrop {
    background: rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(18px);
  }

  .mobile-menu {
    left: 10px;
    right: 10px;
    padding: 16px;
    border-radius: 26px;
    background: color-mix(in srgb, var(--bg) 99%, var(--shell-strong));
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.14);
  }

  .mobile-menu__header {
    margin-bottom: 4px;
  }

  .mobile-menu__label {
    font-size: 0.68rem;
    letter-spacing: 0.09em;
  }

  .mobile-menu__region {
    font-size: 1.06rem;
  }

  .mobile-menu__meta {
    font-size: 0.82rem;
  }

  .mobile-menu__close {
    background: color-mix(in srgb, var(--surface) 96%, transparent);
    border: 1px solid var(--line);
  }

  .mobile-menu__links {
    gap: 8px;
    margin: 14px 0 12px;
  }

  .mobile-menu__links a {
    padding: 11px 14px;
    border-radius: 16px;
    font-size: 0.9rem;
    background: color-mix(in srgb, var(--surface) 97%, transparent);
  }

  .mobile-menu__search {
    min-height: 42px;
    border-radius: 16px;
  }

  .mobile-menu__theme {
    padding: 3px;
    border-radius: 16px;
    background: color-mix(in srgb, var(--surface) 97%, transparent);
  }
}

@media (max-width: 480px) {
  .topbar {
    width: calc(100vw - 16px);
    padding-inline: 8px;
  }

  .brand-lockup {
    width: 146px;
  }

  .brand-lockup__logo {
    max-height: 42px;
  }

  .hero__frame {
    padding: 18px 16px 16px;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(1.32rem, 6.4vw, 1.62rem);
  }

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

  .hero-search button {
    width: 100%;
    min-width: 0;
  }

  .section,
  .hub {
    padding: 16px 14px;
    border-radius: 22px;
  }

  .preview-card,
  .hub-panel,
  .detail-panel,
  .feature-story,
  .comparison-card,
  .perspective-card,
  .timeline-card__content,
  .profile-card,
  .talent-card,
  .learning-card,
  .list-card,
  .mini-surface,
  .ladder-card,
  .news-card,
  .resource-desk-card,
  .signal-block,
  .weather-chip {
    padding: 14px;
    border-radius: 18px;
  }

  .mobile-menu {
    left: 8px;
    right: 8px;
    padding: 14px;
    border-radius: 22px;
  }

  .mobile-menu__links {
    gap: 7px;
  }

  .mobile-menu__links a {
    padding: 10px 13px;
    border-radius: 15px;
  }
}

/* Launch refinement */

.topbar {
  width: min(1180px, calc(100vw - 32px));
  gap: 18px;
  padding: 14px 0 8px;
}

.topnav {
  gap: 22px;
}

.topnav a {
  font-size: 0.92rem;
}

.topnav a.is-current {
  color: var(--text);
}

.topbar__actions {
  gap: 10px;
}

.region-pill,
.theme-toggle,
.theme-toggle__button,
.ghost-button,
.preview-card,
.hero-panel,
.feature-story,
.news-card,
.learning-card,
.coming-soon-card,
.coming-soon-surface,
.coming-soon-page {
  box-shadow: none;
}

.region-pill {
  min-height: 36px;
  padding: 7px 12px;
}

.region-pill__meta {
  color: var(--muted);
  font-size: 0.76rem;
}

.theme-toggle {
  padding: 4px;
}

.theme-toggle__button {
  min-width: 58px;
  padding: 9px 12px;
}

.hero--launch {
  padding-top: 10px;
}

.hero__frame--launch {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 42px 44px;
  text-align: center;
}

.hero__content--launch {
  text-align: center;
}

.hero__content--launch .eyebrow,
.hero__content--launch .hero__lede,
.hero__content--launch .hero__strap {
  max-width: none;
  margin-inline: auto;
}

.hero__content--launch h1 {
  margin-bottom: 10px;
  font-size: clamp(3rem, 8vw, 5.6rem);
  letter-spacing: -0.06em;
}

.hero__strap {
  margin: 0 auto 8px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.42rem);
  letter-spacing: -0.03em;
}

.hero__content--launch .hero__lede {
  margin-bottom: 24px;
  font-size: 1rem;
  color: var(--muted);
}

.hero__content--launch .hero__chips {
  justify-content: center;
}

.section-heading--center,
.section-heading--center > div {
  text-align: center;
  justify-content: center;
  margin-inline: auto;
}

.section-heading--center p {
  margin-inline: auto;
}

.section-heading--center h2 {
  max-width: 16ch;
  margin-inline: auto;
}

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

.hero-panel {
  padding: 22px;
}

.hero-panel h2 {
  font-size: clamp(1.3rem, 2vw, 1.9rem);
}

.hero-panel__media {
  overflow: hidden;
  border-radius: calc(var(--radius-md) - 6px);
}

.hero-panel__media img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
}

.preview-grid--learning-home {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.preview-card {
  padding: 18px;
}

.preview-card__media {
  overflow: hidden;
  border-radius: 18px;
  margin-bottom: 14px;
}

.preview-card__media img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
}

.preview-card__media--placeholder,
.learning-card__media--placeholder {
  display: grid;
  place-items: center;
  min-height: 180px;
  border: 1px dashed var(--line);
  border-radius: 18px;
  color: var(--muted);
  background: color-mix(in srgb, var(--surface-strong) 88%, transparent);
}

.preview-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.preview-card__list--meta {
  margin-top: 10px;
}

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

.coming-soon-card,
.coming-soon-page,
.coming-soon-surface {
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.coming-soon-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  min-height: 220px;
  align-content: start;
}

.coming-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coming-soon-page {
  display: grid;
  justify-items: center;
  gap: 24px;
  max-width: 760px;
  margin-inline: auto;
  padding: 36px 28px;
  text-align: center;
}

.coming-soon-copy {
  display: grid;
  gap: 12px;
  justify-items: center;
  max-width: 44rem;
}

.coming-soon-copy p {
  max-width: 36rem;
  margin: 0;
  color: var(--muted);
}

.coming-soon-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.coming-soon-surface {
  display: grid;
  place-items: center;
  width: min(520px, 100%);
  min-height: 190px;
  padding: 26px;
}

.powered-mark__logo {
  display: none;
  width: min(240px, 56vw);
  height: auto;
}

body[data-theme="dark"] .powered-mark__logo--dark,
body[data-theme="light"] .powered-mark__logo--light {
  display: block;
}

.hub {
  gap: 22px;
}

.news-layout {
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 18px;
}

.feature-story,
.news-card,
.learning-card {
  padding: 18px;
}

.feature-story__body h3,
.news-card__body h3,
.learning-card h3 {
  letter-spacing: -0.03em;
}

.detail-block--news {
  margin-top: 14px;
}

.detail-block--news h4 {
  margin: 0 0 6px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.detail-block--news p {
  margin: 0;
}

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

.learning-card__media {
  overflow: hidden;
  border-radius: 18px;
  margin-bottom: 14px;
}

.learning-card__media img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

@media (max-width: 1080px) {
  .hero__panels--launch,
  .preview-grid--learning-home,
  .learning-grid,
  .coming-soon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .hero__frame--launch {
    padding: 42px 26px 34px;
  }

  .hero__content--launch h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .section-heading--center h2 {
    max-width: 18ch;
  }

  .coming-soon-page {
    padding: 28px 20px;
  }
}

@media (max-width: 640px) {
  .hero__frame--launch {
    padding: 34px 20px 28px;
  }

  .hero__strap {
    font-size: 1rem;
  }

  .hero__content--launch .hero__lede {
    font-size: 0.95rem;
  }

  .hero__panels--launch,
  .preview-grid--learning-home,
  .learning-grid,
  .coming-soon-grid {
    grid-template-columns: 1fr;
  }

  .coming-soon-card,
  .feature-story,
  .news-card,
  .learning-card,
  .preview-card {
    padding: 16px;
  }

  .coming-soon-surface {
    min-height: 150px;
  }
}

/* April 2026 refinement pass */

body {
  overflow-x: hidden;
}

body[data-page="home"] main {
  width: min(1240px, calc(100vw - 28px));
  padding-bottom: 88px;
}

body[data-page="home"] .hero,
body[data-page="home"] .section {
  padding-top: 34px;
}

body[data-page="home"] .topbar {
  width: min(1240px, calc(100vw - 28px));
  gap: 16px;
  padding-top: 12px;
}

body[data-page="home"] .hero--launch {
  min-height: auto;
  align-items: start;
}

body[data-page="home"] .hero__frame--launch {
  max-width: 980px;
  padding: 24px 18px 10px;
}

body[data-page="home"] .hero__content--launch {
  display: grid;
  gap: 10px;
}

body[data-page="home"] .hero__content--launch .eyebrow {
  margin-bottom: 0;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
}

body[data-page="home"] .hero__strap {
  margin-bottom: 0;
  font-size: 1.02rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

body[data-page="home"] .hero__content--launch h1 {
  max-width: 10.5ch;
  margin-inline: auto;
  font-size: clamp(2.8rem, 6.2vw, 4.8rem);
  line-height: 0.95;
}

body[data-page="home"] .hero__content--launch .hero__lede {
  margin-bottom: 6px;
  font-size: 0.98rem;
}

body[data-page="home"] .hero-search {
  width: min(620px, 100%);
  margin-top: 8px;
  padding: 8px;
  gap: 8px;
  border-radius: 22px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
}

body[data-page="home"] .hero-search input {
  padding: 11px 14px;
  font-size: 0.97rem;
}

body[data-page="home"] .hero-search button {
  padding: 0 18px;
  font-size: 0.94rem;
}

body[data-page="home"] .hero__chips {
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

body[data-page="home"] .chip-button {
  padding: 8px 12px;
  font-size: 0.82rem;
}

body[data-page="home"] .section-heading {
  margin-bottom: 16px;
}

body[data-page="home"] .section-heading__eyebrow {
  margin-bottom: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

body[data-page="home"] .section-heading--center h2 {
  max-width: 18ch;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 0.98;
}

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

.browse-rail {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.browse-rail__label {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.browse-rail__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.browse-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-strong) 86%, transparent);
  color: var(--muted);
  font-size: 0.88rem;
  transition:
    background-color 0.28s var(--ease-premium),
    border-color 0.28s var(--ease-premium),
    color 0.28s var(--ease-premium),
    transform 0.28s var(--ease-premium);
}

.browse-chip:hover,
.browse-chip:focus-visible {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  color: var(--text);
}

.browse-chip.is-active {
  background: var(--accent-soft);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
  color: var(--text);
}

.home-news-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  gap: 14px;
}

.home-news-lead,
.home-news-card {
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  border-radius: 24px;
}

.home-news-lead {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
}

.home-news-lead__media,
.home-news-card__media {
  overflow: hidden;
  border-radius: 18px;
  background: var(--surface-strong);
}

.home-news-lead__media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
}

.home-news-lead__body,
.home-news-card__body {
  display: grid;
  align-content: start;
  gap: 10px;
}

.home-news-lead__body h3,
.home-news-card__body h3 {
  margin: 0;
  font-size: clamp(1.22rem, 2vw, 1.72rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.home-news-lead__body > p,
.home-news-card__body > p {
  margin: 0;
}

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

.home-news-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 12px;
  padding: 12px;
}

.home-news-card__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.home-news-card__body h3 {
  font-size: 1.02rem;
}

.home-news-card__body p,
.home-news-card__why {
  font-size: 0.89rem;
  line-height: 1.42;
}

.home-news-card__why {
  color: var(--muted);
}

.preview-grid--learning-home {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.preview-grid--learning-home .preview-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px;
  border-radius: 22px;
}

.preview-grid--learning-home .preview-card--wide {
  grid-column: span 2;
}

.preview-grid--learning-home .preview-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.preview-grid--learning-home .preview-card__label {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
}

.preview-grid--learning-home .preview-card__metric {
  color: var(--muted);
  font-size: 0.8rem;
}

.preview-grid--learning-home .preview-card__media {
  margin-bottom: 0;
}

.preview-grid--learning-home .preview-card__media img {
  aspect-ratio: 1.35 / 1;
}

.preview-grid--learning-home .preview-card h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.preview-grid--learning-home .preview-card p {
  margin: 0;
  font-size: 0.9rem;
}

.preview-grid--learning-home .preview-card__list {
  margin-top: 0;
}

.preview-grid--learning-home .preview-card__actions {
  margin-top: 0;
}

.coming-soon-grid {
  gap: 14px;
}

.coming-soon-card {
  min-height: 0;
  padding: 16px;
  gap: 10px;
}

.news-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 14px;
}

.feature-story,
.news-card,
.learning-card,
.coming-soon-page {
  border-radius: 24px;
}

.feature-story,
.news-card,
.learning-card {
  padding: 14px;
}

.feature-story__body,
.news-card__body,
.learning-card {
  gap: 10px;
}

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

.news-card {
  display: grid;
  gap: 12px;
}

.news-card__media,
.learning-card__media {
  overflow: hidden;
  border-radius: 16px;
}

.news-card__media img,
.learning-card__media img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
}

.news-card__body h3,
.learning-card h3 {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.06;
}

.news-card__body p,
.learning-card p {
  margin: 0;
  font-size: 0.9rem;
}

.news-card__why {
  color: var(--muted);
}

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

.learning-card__footer {
  display: grid;
  gap: 10px;
}

body.splash-page,
body.splash-page .site-shell,
body.splash-page main {
  background: #000;
}

body.splash-page .splash-shell {
  width: min(1240px, calc(100vw - 28px));
  min-height: 100svh;
  margin: 0 auto;
  display: grid;
  place-items: center;
  gap: 20px;
  padding: 26px 0 34px;
}

body.splash-page .splash-overlay {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(87, 180, 255, 0.12), transparent 38%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.62));
  pointer-events: none;
}

body.splash-page .splash-video {
  width: min(880px, 72vw);
  border-radius: 24px;
  box-shadow: none;
  opacity: 0.98;
}

body.splash-page .splash-content {
  position: static;
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 0;
  text-align: center;
}

body.splash-page .splash-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.splash-page .splash-content h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 0.95;
}

body.splash-page .splash-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

body.splash-page .splash-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

body.splash-page .entry-pill,
body.splash-page .splash-link {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
}

@media (max-width: 1120px) {
  body[data-page="home"] main,
  body[data-page="home"] .topbar {
    width: min(1180px, calc(100vw - 24px));
  }

  .home-news-grid,
  .news-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  body[data-page="home"] main,
  body[data-page="home"] .topbar {
    width: calc(100vw - 20px);
  }

  body[data-page="home"] .hero,
  body[data-page="home"] .section {
    padding-top: 28px;
  }

  body[data-page="home"] .hero__frame--launch {
    padding: 18px 8px 6px;
  }

  body[data-page="home"] .hero__content--launch h1 {
    font-size: clamp(2.25rem, 10vw, 3.6rem);
  }

  .browse-shell,
  .home-news-lead,
  .home-news-list,
  .news-stack {
    grid-template-columns: 1fr;
  }

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

  .preview-grid--learning-home .preview-card--wide {
    grid-column: span 1;
  }

  body.splash-page .splash-shell {
    width: calc(100vw - 20px);
    padding: 18px 0 28px;
  }

  body.splash-page .splash-video {
    width: min(100%, 760px);
  }
}

@media (max-width: 640px) {
  body[data-page="home"] main,
  body[data-page="home"] .topbar {
    width: calc(100vw - 16px);
  }

  body[data-page="home"] .hero__content--launch {
    gap: 8px;
  }

  body[data-page="home"] .hero-search {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  body[data-page="home"] .hero-search button {
    min-height: 42px;
  }

  .browse-rail,
  .home-news-lead,
  .home-news-card,
  .preview-grid--learning-home .preview-card,
  .feature-story,
  .news-card,
  .learning-card,
  .coming-soon-card {
    border-radius: 20px;
  }

  .preview-grid--learning-home,
  .learning-grid {
    grid-template-columns: 1fr;
  }

  .home-news-card {
    grid-template-columns: 92px minmax(0, 1fr);
    padding: 10px;
  }

  .home-news-card__body h3,
  .preview-grid--learning-home .preview-card h3,
  .news-card__body h3,
  .learning-card h3 {
    font-size: 0.98rem;
  }

  .home-news-card__body p,
  .home-news-card__why,
  .preview-grid--learning-home .preview-card p,
  .news-card__body p,
  .learning-card p {
    font-size: 0.86rem;
  }

  body.splash-page .splash-video {
    width: min(100%, 92vw);
    border-radius: 20px;
  }

  body.splash-page .splash-content h1 {
    font-size: clamp(2.2rem, 11vw, 3.1rem);
  }
}

/* Final refinement pass */

.topbar::before {
  display: none;
}

.topbar {
  width: min(1200px, calc(100vw - 28px));
  margin-top: 0;
  padding: 10px 0 8px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.brand-lockup {
  width: auto;
  min-width: 0;
  justify-self: start;
  margin-right: 2px;
}

.brand-lockup__logo {
  width: auto;
  height: 28px;
  max-height: 28px;
  object-fit: contain;
  object-position: left center;
}

.topnav {
  justify-content: flex-start;
  gap: 4px;
}

.topnav a {
  min-height: 32px;
  padding: 6px 10px;
  font-size: 0.82rem;
}

.topbar__actions {
  gap: 8px;
  justify-self: end;
  margin-left: 0;
}

.region-pill {
  min-height: 32px;
  padding: 5px 9px;
  box-shadow: none;
}

.theme-toggle {
  box-shadow: none;
}

.theme-toggle__button {
  min-width: 50px;
  padding: 7px 10px;
  font-size: 0.79rem;
}

main {
  width: min(1200px, calc(100vw - 28px));
  gap: 22px;
  padding-bottom: 72px;
}

.section,
.hub {
  padding-top: 24px;
}

body[data-page="home"] main {
  width: min(1200px, calc(100vw - 28px));
  gap: 20px;
}

body[data-page="home"] .hero {
  min-height: auto;
  padding-top: 18px;
  gap: 0;
}

body[data-page="home"] .hero__frame--launch {
  max-width: none;
  padding: 10px 0 0;
}

body[data-page="home"] .hero__content--launch {
  align-items: center;
  gap: 10px;
}

body[data-page="home"] .hero__content--launch .eyebrow {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

body[data-page="home"] .hero__strap {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body[data-page="home"] .hero__content--launch h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.6rem, 5.8vw, 4.55rem);
  line-height: 0.95;
}

body[data-page="home"] .hero__content--launch .hero__lede {
  margin: 0;
  font-size: 0.98rem;
}

body[data-page="home"] .hero-search {
  width: min(560px, 100%);
  margin-top: 2px;
  padding: 8px;
  gap: 8px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  box-shadow: none;
}

body[data-page="home"] .hero-search input {
  padding: 10px 12px;
  font-size: 0.95rem;
}

body[data-page="home"] .hero-search button {
  padding: 0 14px;
  font-size: 0.88rem;
}

body[data-page="home"] .hero__chips {
  justify-content: center;
  gap: 8px;
  margin-top: 2px;
}

body[data-page="home"] .chip-button {
  padding: 8px 11px;
  font-size: 0.79rem;
}

.browse-shell {
  width: min(960px, 100%);
  margin: 2px auto 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.browse-rail {
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  box-shadow: none;
}

.browse-rail__label {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
}

.browse-rail__chips {
  gap: 8px;
}

.browse-chip {
  min-height: 36px;
  padding: 0 12px;
  font-size: 0.82rem;
}

.hero-divider {
  width: 100%;
  height: 1px;
  margin-top: 4px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    color-mix(in srgb, var(--accent) 20%, var(--line)) 12%,
    var(--line) 50%,
    color-mix(in srgb, var(--accent) 20%, var(--line)) 88%,
    transparent 100%
  );
}

.home-news-grid--hero {
  display: grid;
  gap: 12px;
  margin-top: 0;
}

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

.home-news-feature,
.home-news-card {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
}

.home-news-feature__media,
.home-news-card__media {
  overflow: hidden;
  border-radius: 14px;
  background: var(--surface-strong);
}

.home-news-feature__media img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}

.home-news-feature__body,
.home-news-card__body {
  display: grid;
  align-content: start;
  gap: 8px;
}

.home-news-feature__body h3,
.home-news-card__body h3 {
  margin: 0;
  letter-spacing: -0.04em;
}

.home-news-feature__body h3 {
  font-size: 1.22rem;
  line-height: 1.02;
}

.home-news-feature__body p,
.home-news-card__body p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
}

.home-news-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.home-news-card__media img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.home-news-card__body h3 {
  font-size: 0.98rem;
  line-height: 1.04;
}

.home-news-card__why {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.42;
}

body[data-page="home"] .section-heading--center {
  margin-bottom: 14px;
}

body[data-page="home"] .section-heading--center h2 {
  max-width: 17ch;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.preview-grid--learning-home {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.preview-grid--learning-home .preview-card {
  gap: 8px;
  padding: 12px;
  border-radius: 18px;
  box-shadow: none;
}

.preview-grid--learning-home .preview-card--wide {
  grid-column: span 2;
}

.preview-grid--learning-home .preview-card__media {
  border-radius: 14px;
}

.preview-grid--learning-home .preview-card__media img {
  aspect-ratio: 1.48 / 1;
}

.preview-grid--learning-home .preview-card h3 {
  font-size: 1rem;
  line-height: 1.05;
}

.preview-grid--learning-home .preview-card p {
  font-size: 0.87rem;
}

.coming-soon-grid {
  gap: 12px;
}

.coming-soon-card {
  min-height: 0;
  padding: 14px;
  border-radius: 20px;
  box-shadow: none;
}

.feature-story,
.news-card,
.learning-card {
  box-shadow: none;
}

.news-layout {
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

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

.feature-story,
.news-card,
.learning-card {
  padding: 12px;
  border-radius: 20px;
}

.news-card__media,
.learning-card__media {
  border-radius: 14px;
}

.news-card__media img,
.learning-card__media img {
  aspect-ratio: 1.48 / 1;
}

.news-card__body h3,
.learning-card h3 {
  font-size: 1rem;
}

.news-card__body p,
.learning-card p {
  font-size: 0.88rem;
}

.page-loader__card {
  gap: 10px;
  padding: 18px 18px 16px;
  border-radius: 22px;
}

.page-loader__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
}

.page-loader__logo {
  display: none;
  width: auto;
  height: 26px;
}

body[data-theme="dark"] .page-loader__logo--dark,
body[data-theme="light"] .page-loader__logo--light {
  display: block;
}

.page-loader__mark {
  width: 22px;
  height: 22px;
}

body.splash-page .splash-shell {
  width: min(1200px, calc(100vw - 28px));
  gap: 14px;
  padding: 18px 0 24px;
}

body.splash-page .splash-video {
  width: min(760px, 70vw);
  border-radius: 22px;
}

body.splash-page .splash-content {
  gap: 8px;
}

body.splash-page .splash-content h1 {
  font-size: clamp(2.5rem, 6.2vw, 4.4rem);
}

body.splash-page .splash-copy {
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .home-news-list,
  .news-stack,
  .preview-grid--learning-home,
  .learning-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .topbar {
    width: calc(100vw - 18px);
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 8px 0 6px;
  }

  .brand-lockup {
    width: auto;
  }

  .brand-lockup__logo {
    height: 24px;
    max-height: 24px;
  }

  .topbar__actions {
    gap: 6px;
  }

  body[data-page="home"] main,
  main {
    width: calc(100vw - 18px);
  }

  body[data-page="home"] .hero__frame--launch {
    padding-top: 8px;
  }

  body[data-page="home"] .hero__content--launch h1 {
    font-size: clamp(2.1rem, 10vw, 3.3rem);
  }

  .browse-shell,
  .home-news-feature-grid,
  .preview-grid--learning-home .preview-card--wide {
    grid-template-columns: 1fr;
    grid-column: span 1;
  }

  .home-news-list,
  .news-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.splash-page .splash-video {
    width: min(100%, 88vw);
  }
}

@media (max-width: 640px) {
  .topbar {
    width: calc(100vw - 14px);
  }

  .brand-lockup__logo {
    height: 22px;
    max-height: 22px;
  }

  main,
  body[data-page="home"] main {
    width: calc(100vw - 14px);
    gap: 18px;
  }

  body[data-page="home"] .hero {
    padding-top: 12px;
  }

  body[data-page="home"] .hero-search {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .hero-search button {
    width: 100%;
    min-height: 40px;
  }

  .browse-shell,
  .home-news-feature-grid,
  .home-news-list,
  .news-stack,
  .preview-grid--learning-home,
  .learning-grid {
    grid-template-columns: 1fr;
  }

  .browse-rail,
  .home-news-feature,
  .home-news-card,
  .preview-grid--learning-home .preview-card,
  .feature-story,
  .news-card,
  .learning-card,
  .coming-soon-card {
    padding: 12px;
    border-radius: 18px;
  }

  .home-news-feature__body h3 {
    font-size: 1.08rem;
  }

  .home-news-card__body h3,
  .preview-grid--learning-home .preview-card h3,
  .news-card__body h3,
  .learning-card h3 {
    font-size: 0.95rem;
  }

  .home-news-feature__body p,
  .home-news-card__body p,
  .home-news-card__why,
  .preview-grid--learning-home .preview-card p,
  .news-card__body p,
  .learning-card p {
    font-size: 0.85rem;
  }

  body.splash-page .splash-content h1 {
    font-size: clamp(2.1rem, 11vw, 3.1rem);
  }
}

/* Launch cleanup pass */

.topbar {
  width: min(1160px, calc(100vw - 28px));
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  padding: 10px 0 8px;
  border: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 90%, transparent);
  border-radius: 0;
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.topbar::before,
.brand-lockup::before,
.brand-lockup::after {
  display: none;
}

.brand-lockup {
  width: auto;
  min-width: 0;
  margin: 0;
  padding: 0;
  align-self: center;
}

.brand-lockup__logo {
  width: auto;
  height: 25px;
  max-height: 25px;
  object-fit: contain;
  object-position: left center;
}

.topnav {
  justify-content: flex-start;
  gap: 2px;
  padding-left: 6px;
}

.topnav a {
  min-height: 30px;
  padding: 6px 10px;
  font-size: 0.81rem;
}

.topbar__actions {
  justify-self: end;
  gap: 8px;
}

.region-pill {
  min-height: 30px;
  padding: 0 11px;
  gap: 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  box-shadow: none;
}

.region-pill__label {
  display: none;
}

.region-pill strong,
.region-pill__meta {
  font-size: 0.8rem;
  line-height: 1;
}

.region-pill strong {
  font-weight: 600;
}

.region-pill__separator {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--muted) 55%, transparent);
}

.theme-toggle {
  padding: 3px;
  border-radius: 999px;
}

.theme-toggle__button {
  min-width: 46px;
  padding: 6px 10px;
  font-size: 0.78rem;
}

main,
body[data-page="home"] main {
  width: min(1160px, calc(100vw - 28px));
  gap: 18px;
  padding-bottom: 64px;
}

body[data-page="home"] .hero {
  min-height: auto;
  padding-top: 14px;
}

body[data-page="home"] .hero__frame,
body[data-page="home"] .section {
  padding: 22px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page="home"] .hero__frame::before,
body[data-page="home"] .section::before {
  display: none;
}

body[data-page="home"] .hero__content--launch {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

body[data-page="home"] .hero__content--launch .eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
}

body[data-page="home"] .hero__strap {
  display: none;
}

body[data-page="home"] .hero__content--launch h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.5rem, 5.4vw, 4.7rem);
  line-height: 0.95;
  text-wrap: balance;
}

body[data-page="home"] .hero__content--launch .hero__lede {
  max-width: 34rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
}

body[data-page="home"] .hero-search {
  width: min(560px, 100%);
  margin-top: 4px;
  padding: 7px;
  gap: 8px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  box-shadow: none;
}

body[data-page="home"] .hero-search input {
  padding: 11px 14px;
  font-size: 0.95rem;
}

body[data-page="home"] .hero-search button {
  padding: 0 16px;
  font-size: 0.85rem;
}

body[data-page="home"] .hero__chips {
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

body[data-page="home"] .chip-button {
  padding: 8px 12px;
  font-size: 0.8rem;
}

body[data-page="home"] .hero-divider {
  width: min(1040px, 100%);
  height: 1px;
  margin: 4px auto 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    color-mix(in srgb, var(--accent) 22%, transparent) 10%,
    var(--line) 50%,
    color-mix(in srgb, var(--accent) 22%, transparent) 90%,
    transparent 100%
  );
}

body[data-page="home"] .home-news-grid--hero {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

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

.home-news-feature,
.home-news-card {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  box-shadow: none;
}

.home-news-feature__media,
.home-news-card__media,
.preview-card__media,
.news-card__media,
.learning-card__media {
  overflow: hidden;
  border-radius: 14px;
  background: color-mix(in srgb, var(--surface-strong) 92%, transparent);
}

.home-news-feature__media {
  aspect-ratio: 16 / 10;
}

.home-news-card {
  grid-template-columns: 136px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}

.home-news-card__media {
  aspect-ratio: 4 / 3;
}

.media-link,
.media-link img,
.home-news-feature__media img,
.home-news-card__media img,
.preview-card__media img,
.news-card__media img,
.learning-card__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.home-news-feature__media img,
.home-news-card__media img,
.preview-card__media img,
.news-card__media img,
.learning-card__media img {
  object-fit: cover;
  object-position: center center;
}

.home-news-feature__body,
.home-news-card__body {
  display: grid;
  align-content: start;
  gap: 8px;
}

.home-news-feature__body h3,
.home-news-card__body h3 {
  margin: 0;
  letter-spacing: -0.04em;
}

.home-news-feature__body h3 {
  font-size: 1.16rem;
  line-height: 1.04;
}

.home-news-card__body h3 {
  font-size: 0.98rem;
  line-height: 1.06;
}

.home-news-feature__body p,
.home-news-card__body p,
.home-news-card__why {
  margin: 0;
  font-size: 0.87rem;
  line-height: 1.45;
}

.home-news-card__why {
  color: var(--muted);
}

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

body[data-page="home"] .section {
  padding-top: 8px;
}

body[data-page="home"] .section-heading {
  margin-bottom: 12px;
}

body[data-page="home"] .section-heading__eyebrow {
  margin-bottom: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

body[data-page="home"] .section-heading--center h2 {
  max-width: 18ch;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
}

.preview-grid--learning-home {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.preview-grid--learning-home .preview-card {
  gap: 10px;
  padding: 12px;
  border-radius: 20px;
  box-shadow: none;
}

.preview-grid--learning-home .preview-card__media {
  aspect-ratio: 16 / 10;
}

.news-card__media,
.learning-card__media {
  aspect-ratio: 16 / 10;
}

.preview-grid--learning-home .preview-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.08;
}

.preview-grid--learning-home .preview-card p {
  margin: 0;
  font-size: 0.87rem;
}

body.splash-page {
  overflow: hidden;
  background: var(--bg);
}

body.splash-page[data-theme="dark"] {
  background: #000000;
}

body.splash-page[data-theme="light"] {
  background: #ffffff;
}

body.splash-page .splash-shell {
  width: min(1160px, calc(100vw - 28px));
  min-height: 100svh;
  display: grid;
  place-items: center;
  gap: 16px;
  padding: 24px 0 30px;
}

body.splash-page .splash-overlay {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, color-mix(in srgb, var(--accent-soft) 64%, transparent) 0%, transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.16) 100%);
  pointer-events: none;
}

body.splash-page[data-theme="light"] .splash-overlay {
  background:
    radial-gradient(circle at 50% 18%, rgba(24, 121, 212, 0.08) 0%, transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.08) 100%);
}

body.splash-page .splash-video {
  width: min(880px, 74vw);
  border-radius: 24px;
  opacity: 1;
  box-shadow: none;
  filter: none;
}

body.splash-page .splash-content {
  max-width: 700px;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

body.splash-page .splash-kicker {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
}

body.splash-page .splash-content h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(2.55rem, 6.2vw, 4.7rem);
  line-height: 0.95;
  text-wrap: balance;
}

body.splash-page .splash-copy {
  margin: 0;
  font-size: 0.96rem;
}

body.splash-page .splash-actions {
  margin-top: 4px;
}

body.splash-page .entry-card {
  position: fixed;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  width: min(620px, calc(100vw - 28px));
  padding: 22px;
  border-radius: 28px;
  border: 1px solid color-mix(in srgb, var(--line) 92%, transparent);
  background: color-mix(in srgb, var(--surface-strong) 94%, transparent);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  z-index: 3;
}

body.splash-page[data-theme="light"] .entry-card {
  background: rgba(255, 255, 255, 0.92);
}

.entry-card__step {
  display: grid;
  gap: 14px;
}

.entry-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

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

.entry-choice {
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  color: var(--text);
  text-align: center;
  transition:
    transform 0.28s var(--ease-premium),
    background-color 0.28s var(--ease-premium),
    border-color 0.28s var(--ease-premium);
}

.entry-choice:hover,
.entry-choice:focus-visible,
.entry-choice.is-active {
  transform: translateY(-1px);
  background: var(--accent-soft);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
}

.entry-choice--wide {
  grid-column: span 3;
}

.entry-back {
  justify-self: start;
  padding: 10px 14px;
}

@media (max-width: 1024px) {
  .home-news-feature-grid,
  .preview-grid--learning-home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .topbar {
    width: calc(100vw - 18px);
    padding: 8px 0 6px;
  }

  .topnav {
    padding-left: 0;
  }

  .region-pill {
    display: none;
  }

  main,
  body[data-page="home"] main {
    width: calc(100vw - 18px);
  }

  body[data-page="home"] .hero__content--launch h1 {
    font-size: clamp(2.15rem, 9vw, 3.45rem);
  }

  .home-news-feature-grid,
  .home-news-list,
  .preview-grid--learning-home,
  .entry-choice-grid {
    grid-template-columns: 1fr;
  }

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

  body.splash-page .splash-shell {
    width: calc(100vw - 18px);
    padding: 18px 0 24px;
  }

  body.splash-page .splash-video {
    width: min(100%, 88vw);
  }

  body.splash-page .entry-card {
    width: calc(100vw - 18px);
    bottom: 18px;
    padding: 18px;
  }

  .entry-choice--wide {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .topbar {
    width: calc(100vw - 14px);
  }

  main,
  body[data-page="home"] main {
    width: calc(100vw - 14px);
    gap: 16px;
  }

  .brand-lockup__logo {
    height: 23px;
    max-height: 23px;
  }

  body[data-page="home"] .hero {
    padding-top: 10px;
  }

  body[data-page="home"] .hero-search {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .hero-search button {
    width: 100%;
    min-height: 40px;
  }

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

  body.splash-page .splash-video {
    width: min(100%, 92vw);
    border-radius: 22px;
  }

  body.splash-page .splash-content h1 {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
  }

  body.splash-page .entry-card {
    width: calc(100vw - 14px);
  }
}

/* Public launch finish pass */

.topbar::before,
.brand-lockup::before,
.brand-lockup::after {
  display: none !important;
}

.topbar {
  position: sticky;
  top: 14px;
  width: min(1220px, calc(100vw - 28px));
  margin: 0 auto;
  padding: 10px 14px;
  border: 1px solid color-mix(in srgb, var(--line) 88%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg) 92%, var(--surface));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  width: auto;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.brand-lockup__logo {
  width: auto;
  height: 26px;
  max-height: 26px;
}

.topnav {
  justify-content: center;
  gap: 4px;
  padding: 0;
}

.topnav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.84rem;
  letter-spacing: 0.01em;
}

.topnav a.is-current,
.topnav a:hover,
.topnav a:focus-visible {
  background: color-mix(in srgb, var(--accent-soft) 56%, transparent);
}

.topbar__actions {
  gap: 10px;
}

.region-pill {
  min-height: 34px;
  padding: 0 12px;
  gap: 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  box-shadow: none;
}

.region-pill strong,
.region-pill__meta {
  font-size: 0.82rem;
}

.region-pill__separator {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--muted) 60%, transparent);
}

.theme-toggle {
  padding: 3px;
  border-radius: 999px;
  box-shadow: none;
}

.theme-toggle__button {
  min-width: 50px;
  padding: 7px 11px;
  font-size: 0.79rem;
}

main,
body[data-page="home"] main {
  width: min(1220px, calc(100vw - 28px));
  gap: 18px;
  padding-bottom: 58px;
}

.section,
.hub {
  padding-top: 10px;
}

body[data-page="home"] .hero {
  min-height: auto;
  padding-top: 14px;
}

body[data-page="home"] .hero__frame,
body[data-page="home"] .section {
  padding-top: 10px;
}

body[data-page="home"] .hero__content--launch {
  max-width: 940px;
  gap: 10px;
}

body[data-page="home"] .hero__content--launch .eyebrow {
  margin: 0;
  font-size: 0.81rem;
  letter-spacing: 0.17em;
}

body[data-page="home"] .hero__content--launch h1 {
  max-width: 12.2ch;
  font-size: clamp(2.55rem, 5vw, 4.8rem);
  line-height: 0.95;
  text-wrap: balance;
}

body[data-page="home"] .hero__lede {
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.42;
}

body[data-page="home"] .hero-search {
  width: min(560px, 100%);
  margin-top: 6px;
  padding: 7px;
  gap: 8px;
  border-radius: 18px;
  box-shadow: none;
}

body[data-page="home"] .hero-search input {
  padding: 11px 14px;
  font-size: 0.95rem;
}

body[data-page="home"] .hero-search button {
  padding: 0 16px;
  font-size: 0.84rem;
}

body[data-page="home"] .hero__chips {
  gap: 8px;
  margin-top: 2px;
}

body[data-page="home"] .chip-button {
  padding: 8px 12px;
  font-size: 0.79rem;
}

body[data-page="home"] .hero-divider {
  margin-top: 6px;
}

.home-news-grid--hero {
  gap: 12px;
}

.home-news-feature-grid {
  align-items: start;
}

.home-news-feature,
.home-news-card,
.preview-grid--learning-home .preview-card,
.news-card,
.learning-card {
  align-content: start;
  min-height: 0;
}

.home-news-feature,
.home-news-card {
  border-radius: 22px;
}

.home-news-feature__media,
.preview-card__media,
.news-card__media,
.learning-card__media {
  aspect-ratio: 16 / 10;
}

.home-news-card__media {
  aspect-ratio: 4 / 3;
}

.media-link {
  display: block;
  width: 100%;
  height: 100%;
}

.home-news-feature__media img,
.home-news-card__media img,
.preview-card__media img,
.news-card__media img,
.learning-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.home-news-feature__body h3,
.preview-grid--learning-home .preview-card h3,
.news-card__body h3,
.learning-card h3 {
  text-wrap: balance;
}

.home-news-feature__body p,
.home-news-card__body p,
.news-card__body p,
.learning-card p,
.preview-grid--learning-home .preview-card p {
  text-wrap: pretty;
}

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

.preview-grid--learning-home {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.preview-grid--learning-home .preview-card {
  padding: 13px;
  border-radius: 22px;
}

.news-layout {
  gap: 12px;
}

.news-stack {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.feature-story,
.news-card,
.learning-card,
.coming-soon-card,
.coming-soon-page {
  border-radius: 24px;
}

.feature-story,
.news-card,
.learning-card {
  padding: 14px;
}

.page-loader {
  background: rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.page-loader__card {
  min-width: min(420px, calc(100vw - 36px));
  padding: 20px 22px 18px;
  border-radius: 24px;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(6, 10, 15, 0.94);
}

.page-loader__brand {
  min-height: 30px;
}

.page-loader__logo {
  display: block;
  width: auto;
  height: 28px;
}

body[data-theme="dark"] .page-loader__logo--dark,
body[data-theme="light"] .page-loader__logo--light {
  display: none;
}

.page-loader__label {
  color: rgba(244, 247, 251, 0.82);
}

body.splash-page,
body.splash-page .splash-shell,
body.splash-page main {
  background: #ffffff !important;
}

body.splash-page .splash-overlay,
body.splash-page .splash-content {
  display: none !important;
}

body.splash-page {
  overflow: hidden;
}

body.splash-page .splash-shell {
  width: min(1240px, calc(100vw - 28px));
  min-height: 100svh;
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: 22px 0;
}

body.splash-page .splash-video {
  width: min(940px, 76vw);
  max-width: 100%;
  max-height: min(78svh, 760px);
  border-radius: 0;
  box-shadow: none;
  filter: none;
  opacity: 1;
  outline: none;
}

body.splash-page.splash-action-ready .splash-video {
  cursor: pointer;
}

body.splash-page.splash-entry-open .splash-video {
  opacity: 0.96;
}

body.splash-page .entry-card {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: min(760px, calc(100vw - 28px));
  max-height: min(84svh, 760px);
  overflow: auto;
  padding: 22px;
  border-radius: 30px;
  border: 1px solid rgba(15, 19, 24, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(15, 19, 24, 0.14);
  backdrop-filter: blur(18px);
}

body.splash-page .entry-card__step {
  gap: 14px;
}

body.splash-page .entry-card__eyebrow {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

body.splash-page .entry-card h2 {
  margin: 0;
  color: #0f1318;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 0.98;
}

body.splash-page .entry-card p {
  color: #5c6675;
}

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

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

.entry-choice {
  min-height: 48px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 19, 24, 0.1);
  background: rgba(248, 249, 251, 0.96);
  color: #0f1318;
  font-size: 0.88rem;
  line-height: 1.2;
}

.entry-choice:hover,
.entry-choice:focus-visible,
.entry-choice.is-active {
  background: rgba(87, 180, 255, 0.12);
  border-color: rgba(87, 180, 255, 0.34);
}

.entry-back {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(248, 249, 251, 0.96);
  color: #0f1318;
  border-color: rgba(15, 19, 24, 0.1);
}

@media (max-width: 1024px) {
  .home-news-feature-grid,
  .preview-grid--learning-home,
  .news-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .topbar {
    width: calc(100vw - 18px);
    padding: 8px 12px;
  }

  main,
  body[data-page="home"] main {
    width: calc(100vw - 18px);
  }

  .topnav {
    justify-content: flex-start;
  }

  body[data-page="home"] .hero__content--launch h1 {
    font-size: clamp(2.1rem, 9.2vw, 3.5rem);
  }

  .home-news-feature-grid,
  .home-news-list,
  .preview-grid--learning-home,
  .news-stack,
  .entry-choice-grid {
    grid-template-columns: 1fr;
  }

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

  body.splash-page .splash-shell {
    width: calc(100vw - 18px);
  }

  body.splash-page .splash-video {
    width: min(100%, 92vw);
  }

  body.splash-page .entry-card {
    width: calc(100vw - 18px);
    bottom: 18px;
    padding: 18px;
  }
}

@media (max-width: 640px) {
  .topbar {
    width: calc(100vw - 14px);
    border-radius: 22px;
  }

  main,
  body[data-page="home"] main {
    width: calc(100vw - 14px);
    gap: 16px;
  }

  .brand-lockup__logo {
    height: 24px;
    max-height: 24px;
  }

  body[data-page="home"] .hero-search {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .hero-search button {
    width: 100%;
    min-height: 42px;
  }

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

  body.splash-page .entry-card {
    width: calc(100vw - 14px);
  }

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

/* Precision polish pass */

.topbar {
  width: min(1240px, calc(100vw - 28px));
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  padding: 10px 18px 10px 22px;
}

.brand-lockup {
  padding-left: 8px;
}

.brand-lockup__logo {
  height: 30px;
  max-height: 30px;
}

.topnav {
  justify-self: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.topnav a {
  min-height: 34px;
  padding: 7px 13px;
  font-size: 0.84rem;
}

.topbar__actions {
  justify-self: end;
  gap: 10px;
  margin-right: 2px;
}

.home-news-feature,
.home-news-card,
.news-card,
.learning-card,
.preview-grid--learning-home .preview-card {
  padding: 14px;
}

.list-card__meta {
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.2;
}

.list-card__meta span {
  display: inline-flex;
  align-items: center;
}

.source-identity,
.source-identity--compact {
  align-self: start;
  gap: 8px;
  padding: 6px 10px;
}

.source-identity__logo {
  width: 18px;
  height: 18px;
  background: transparent;
  object-fit: contain;
}

.source-identity__label {
  font-size: 0.74rem;
  line-height: 1.1;
}

.headline-link {
  display: inline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.12em;
}

.home-news-feature__body,
.home-news-card__body,
.feature-story__body,
.news-card__body {
  grid-auto-rows: max-content;
}

.home-news-feature {
  gap: 12px;
}

.home-news-feature__media {
  aspect-ratio: 16 / 10;
}

.home-news-feature__body h3 {
  font-size: 1.18rem;
  line-height: 1.04;
}

.home-news-feature__body p,
.home-news-card__body p,
.news-card__body p {
  max-width: none;
}

.home-news-card {
  grid-template-columns: 144px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.home-news-card__media {
  aspect-ratio: 4 / 3;
}

.home-news-card__body h3 {
  font-size: 1.01rem;
  line-height: 1.08;
}

.home-news-card__why,
.news-card__why {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--muted);
}

.detail-block--news {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-top: 0;
  border-top: 0;
}

.detail-block--news h4 {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
}

.detail-block--news p {
  margin: 0;
  font-size: 0.87rem;
  line-height: 1.52;
  max-width: 62ch;
}

.news-layout {
  grid-template-columns: 1fr;
  gap: 14px;
}

.feature-story--news {
  grid-template-columns: minmax(340px, 0.96fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: start;
  max-width: none;
}

.feature-story__body {
  gap: 10px;
  padding-right: 2px;
}

.feature-story__body h3 {
  font-size: 1.42rem;
  line-height: 1.02;
  text-wrap: balance;
}

.feature-story__body > p {
  max-width: 62ch;
  font-size: 0.94rem;
  line-height: 1.58;
}

.news-card {
  grid-template-columns: 136px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.news-card__media {
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.news-card__body {
  gap: 9px;
}

.news-card__body h3 {
  font-size: 1.02rem;
  line-height: 1.08;
}

.news-card__body > p {
  font-size: 0.88rem;
  line-height: 1.5;
}

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

.preview-grid--learning-home .preview-card,
.learning-card {
  gap: 10px;
}

.preview-grid--learning-home .preview-card__media,
.learning-card__media {
  aspect-ratio: 16 / 10;
}

.preview-grid--learning-home .preview-card h3,
.learning-card h3 {
  line-height: 1.08;
}

.coming-soon-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 22px 24px 26px;
}

.coming-soon-copy {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.coming-soon-actions {
  justify-content: center;
}

.powered-mark {
  width: min(480px, 100%);
  min-height: 170px;
  padding: 28px 22px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
}

.powered-mark__logo {
  width: min(290px, 76%);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.18));
}

body[data-theme="dark"] .powered-mark__logo--dark {
  display: block !important;
}

body[data-theme="light"] .powered-mark__logo--light {
  display: block !important;
}

@media (max-width: 1080px) {
  .news-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-story--news {
    grid-template-columns: 1fr;
  }

  .feature-story__body > p,
  .detail-block--news p {
    max-width: none;
  }
}

@media (max-width: 820px) {
  .topbar {
    width: calc(100vw - 18px);
    padding: 8px 12px 8px 14px;
  }

  .brand-lockup {
    padding-left: 4px;
  }

  .brand-lockup__logo {
    height: 27px;
    max-height: 27px;
  }

  .news-stack,
  .home-news-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topbar {
    width: calc(100vw - 14px);
  }

  .brand-lockup__logo {
    height: 25px;
    max-height: 25px;
  }

  .home-news-card,
  .news-card {
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 12px;
  }

  .coming-soon-page {
    padding: 18px 16px 22px;
  }

  .powered-mark {
    min-height: 150px;
    padding: 22px 18px;
  }
}

/* Final launch precision pass */
.topbar {
  grid-template-columns: minmax(148px, auto) minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 18px;
  padding: 10px 18px 10px 24px;
}

.brand-lockup {
  min-width: 148px;
  padding-left: 8px;
}

.brand-lockup__logo {
  height: 34px;
  max-height: 34px;
  width: auto;
}

.topnav {
  justify-self: center;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.topnav a {
  min-width: 88px;
  padding: 7px 12px;
  text-align: center;
}

.topbar__actions {
  justify-self: end;
  gap: 8px;
}

.region-pill strong,
.region-pill__meta {
  white-space: nowrap;
}

body[data-page="home"] .hero__content--launch {
  max-width: 976px;
  gap: 8px;
}

body[data-page="home"] .hero-search {
  width: min(520px, 100%);
}

.home-news-grid--hero {
  gap: 10px;
}

.news-status--compact {
  padding: 9px 12px;
  margin-bottom: 2px;
  border-radius: 14px;
}

.news-status--compact p {
  font-size: 0.79rem;
  letter-spacing: 0.01em;
}

.list-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.source-identity,
.source-identity--compact {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.source-identity__label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-news-feature,
.home-news-card,
.news-card,
.feature-story--news {
  overflow: hidden;
}

.home-news-feature__body,
.home-news-card__body,
.news-card__body,
.feature-story__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.home-news-feature__body h3,
.home-news-card__body h3,
.news-card__body h3,
.feature-story__body h3 {
  margin: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.home-news-feature__body > p,
.home-news-card__body > p,
.news-card__body > p,
.feature-story__body > p,
.home-news-card__why,
.news-card__why,
.detail-block--news p {
  margin: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

.home-news-feature__body > p,
.home-news-card__body > p,
.news-card__body > p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-news-feature__body > p {
  -webkit-line-clamp: 3;
}

.home-news-card__body > p,
.news-card__body > p {
  -webkit-line-clamp: 3;
}

.home-news-card__why,
.news-card__why {
  line-height: 1.46;
}

.home-news-feature__body .text-link--inline {
  margin-top: auto;
}

.home-news-feature__media,
.home-news-card__media,
.news-card__media,
.preview-card__media,
.learning-card__media {
  overflow: hidden;
  border-radius: 18px;
}

.feature-story--news {
  grid-template-columns: minmax(300px, 0.98fr) minmax(0, 1fr);
  gap: 20px;
}

.news-card__media--feature {
  min-height: 280px;
}

.detail-block--news {
  width: 100%;
}

.powered-mark__logo {
  image-rendering: auto;
}

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

.entry-choice {
  min-height: 44px;
}

@media (max-width: 1080px) {
  .topbar {
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding-left: 20px;
  }

  .brand-lockup__logo {
    height: 32px;
    max-height: 32px;
  }

  .topnav a {
    min-width: auto;
    padding: 7px 10px;
  }

  .feature-story--news {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .topbar {
    padding: 8px 12px 8px 16px;
  }

  .brand-lockup {
    padding-left: 2px;
  }

  .topbar__actions {
    gap: 6px;
  }

  .news-status--compact {
    padding: 8px 10px;
  }

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

@media (max-width: 640px) {
  body[data-page="home"] .hero__content--launch {
    gap: 6px;
  }

  .home-news-card,
  .news-card {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 10px;
  }

  .home-news-card__media,
  .news-card__media {
    aspect-ratio: 1 / 1;
  }

  .source-identity__label {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
}

/* Full-device production finish pass */
main,
body[data-page="home"] main {
  gap: 14px;
}

.section,
.hub {
  padding-top: 6px;
}

.topbar {
  width: min(1244px, calc(100vw - 28px));
  min-height: 66px;
  padding: 10px 20px 10px 28px;
}

.brand-lockup {
  min-width: 170px;
  padding-left: 10px;
}

.brand-lockup__logo {
  height: 40px;
  max-height: 40px;
}

.topnav {
  justify-self: center;
  width: 100%;
  gap: 10px;
}

.topnav a {
  min-width: 92px;
  padding: 7px 12px;
}

.region-pill {
  cursor: pointer;
  user-select: none;
  padding: 4px;
  gap: 6px;
  min-height: 40px;
}

.region-pill__badge,
.region-pill__meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.region-pill__badge {
  background: color-mix(in srgb, var(--surface-strong) 92%, transparent);
  color: var(--text);
  font-weight: 600;
}

.region-pill__meta-pill {
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  color: var(--muted);
}

body[data-page="home"] .hero__content--launch {
  max-width: 1000px;
  gap: 7px;
}

body[data-page="home"] .hero {
  min-height: auto;
  align-items: start;
  padding-top: 10px;
}

body[data-page="home"] .hero__frame--launch {
  padding-top: 14px;
}

body[data-page="home"] .hero__content--launch h1 {
  max-width: 13.5ch;
  font-size: clamp(2.8rem, 5vw, 4.45rem);
}

body[data-page="home"] .hero__lede {
  font-size: 0.98rem;
}

body[data-page="home"] .hero-search {
  width: min(540px, 100%);
  padding: 8px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
}

body[data-page="home"] .hero-search input {
  background: color-mix(in srgb, var(--surface-strong) 94%, transparent);
}

body[data-page="home"] .hero-search button {
  background: color-mix(in srgb, var(--accent) 18%, var(--surface-strong));
  border-color: color-mix(in srgb, var(--accent) 28%, var(--line));
  color: var(--text);
}

.home-news-grid--hero,
body[data-page="home"] .home-news-grid--hero {
  width: min(1080px, 100%);
  grid-template-columns: 1fr;
  gap: 14px;
}

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

.home-news-feature,
.home-news-card,
.news-card,
.learning-card,
.preview-grid--learning-home .preview-card {
  border-radius: 22px;
  padding: 14px;
}

.home-news-feature__body,
.home-news-card__body,
.news-card__body,
.feature-story__body,
.preview-grid--learning-home .preview-card {
  min-width: 0;
}

.home-news-feature__body h3,
.home-news-card__body h3,
.news-card__body h3,
.feature-story__body h3,
.preview-grid--learning-home .preview-card h3,
.learning-card h3 {
  overflow-wrap: break-word;
  word-break: normal;
  text-wrap: balance;
}

.home-news-feature__body > p,
.home-news-card__body > p,
.news-card__body > p,
.feature-story__body > p,
.home-news-card__why,
.news-card__why,
.detail-block--news p,
.preview-grid--learning-home .preview-card p,
.learning-card p {
  overflow-wrap: break-word;
  word-break: normal;
  text-wrap: pretty;
}

.home-news-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-news-card {
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 10px;
}

.home-news-card__media {
  aspect-ratio: 16 / 10;
}

.home-news-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.home-news-card__body .text-link--inline {
  margin-top: auto;
}

.home-news-card__why,
.news-card__why {
  overflow: visible;
  white-space: normal;
}

.preview-grid--learning-home {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.preview-grid--learning-home .preview-card,
.learning-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.preview-grid--learning-home .preview-card__actions,
.learning-card .button-row {
  margin-top: auto;
}

.news-status--compact {
  margin-bottom: 0;
}

.page-loader {
  background: #000000;
  backdrop-filter: none;
}

.page-loader__card {
  min-width: min(460px, calc(100vw - 36px));
  padding: 26px 28px 22px;
  border-radius: 26px;
  border-color: rgba(255, 255, 255, 0.06);
  background: transparent;
}

.page-loader__brand {
  min-height: 44px;
}

.page-loader__logo {
  height: 44px;
}

.page-loader__label {
  color: rgba(244, 247, 251, 0.9);
}

.powered-mark {
  min-height: 132px;
  padding: 24px 20px;
}

.powered-mark__lockup {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.powered-mark__logo {
  display: none;
  width: min(210px, 74%);
}

.powered-mark__text {
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

body[data-theme="dark"] .powered-mark__logo--dark,
body[data-theme="light"] .powered-mark__logo--light {
  display: block !important;
}

.workspace-picker {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.workspace-picker.is-open {
  display: block;
}

.workspace-picker__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(14px);
}

.workspace-picker__panel {
  position: relative;
  width: min(760px, calc(100vw - 28px));
  margin: 8vh auto 0;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: var(--shadow-soft);
}

.workspace-picker__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.workspace-picker__eyebrow,
.workspace-picker__label {
  margin: 0 0 8px;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.workspace-picker__header h2 {
  margin: 0 0 6px;
  font-size: 1.55rem;
  line-height: 1;
}

.workspace-picker__header p {
  margin: 0;
  color: var(--muted);
}

.workspace-picker__section {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.workspace-picker__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

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

.workspace-picker__choice,
.workspace-picker__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-strong) 92%, transparent);
  color: var(--text);
  font: inherit;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.workspace-picker__choice:hover,
.workspace-picker__choice:focus-visible,
.workspace-picker__choice.is-active,
.workspace-picker__close:hover,
.workspace-picker__close:focus-visible {
  border-color: color-mix(in srgb, var(--accent) 34%, var(--line));
  background: color-mix(in srgb, var(--accent-soft) 64%, transparent);
}

.workspace-picker__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

body.is-workspace-picker-open {
  overflow: hidden;
}

.mobile-menu__context {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

@media (max-width: 1080px) {
  .home-news-list,
  .preview-grid--learning-home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .topbar {
    width: calc(100vw - 16px);
    min-height: 74px;
    padding: 10px 14px 10px 18px;
    border-radius: 28px;
  }

  .brand-lockup {
    min-width: auto;
    padding-left: 4px;
  }

  .brand-lockup__logo {
    height: 42px;
    max-height: 42px;
  }

  .topbar__menu-button {
    width: 54px;
    height: 54px;
  }

  .hero h1,
  body[data-page="home"] .hero__content--launch h1 {
    font-size: clamp(2.95rem, 13vw, 4.2rem);
    max-width: 11ch;
  }

  body[data-page="home"] .hero-search {
    padding: 10px;
    gap: 10px;
  }

  .home-news-feature-grid,
  .home-news-list,
  .preview-grid--learning-home,
  .workspace-picker__grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .topbar {
    width: calc(100vw - 12px);
    min-height: 68px;
    padding: 9px 12px 9px 16px;
  }

    .brand-lockup__logo {
      height: 40px;
      max-height: 40px;
    }

    body[data-page="home"] .hero__content--launch .eyebrow {
      font-size: 0.76rem;
      letter-spacing: 0.16em;
    }

  body[data-page="home"] .hero {
    padding-top: 4px;
  }

  body[data-page="home"] .hero__frame--launch {
    padding-top: 8px;
  }

  body[data-page="home"] .hero__lede {
    font-size: 0.92rem;
  }

  body[data-page="home"] .hero-search input {
    background: color-mix(in srgb, var(--surface-strong) 92%, transparent);
  }

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

  .news-card__media,
  .home-news-card__media {
    aspect-ratio: 16 / 10;
  }

  .workspace-picker__panel {
    width: calc(100vw - 18px);
    margin-top: 4vh;
    padding: 18px 16px;
  }

    .workspace-picker__header {
      display: grid;
    }

    .workspace-picker__actions {
      flex-direction: column-reverse;
    }
  }

  /* CanLII finish pass */
  .powered-mark {
    width: min(460px, 100%);
    min-height: 154px;
    padding: 26px 22px;
    border-radius: 30px;
    overflow: hidden;
    background: #ffffff;
  }

  .powered-mark__lockup {
    gap: 14px;
  }

  .powered-mark__label {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .powered-mark__logo {
    display: none;
    width: min(328px, 88%);
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: none;
  }

  .powered-mark__text {
    display: none;
  }

  body[data-theme="dark"] .powered-mark {
    background: #000000;
  }

  body[data-theme="dark"] .powered-mark__logo--dark,
  body[data-theme="light"] .powered-mark__logo--light {
    display: block !important;
  }

  @media (max-width: 640px) {
    .powered-mark {
      min-height: 136px;
      padding: 22px 16px;
    }

    .powered-mark__logo {
      width: min(286px, 92%);
    }
  }

/* April 2026 coordinated launch pass */

.topbar {
  position: sticky;
  top: 12px;
  width: min(1210px, calc(100vw - 28px));
  min-height: 64px;
  margin: 0 auto;
  padding: 10px 18px 10px 24px;
  grid-template-columns: minmax(168px, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  border: 1px solid color-mix(in srgb, var(--line) 88%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg) 90%, var(--surface));
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(20px);
}

.topbar::before,
.brand-lockup::before,
.brand-lockup::after {
  display: none !important;
}

.brand-lockup {
  min-width: 168px;
  padding-left: 10px;
  margin: 0;
}

.brand-lockup__logo {
  width: auto;
  height: 38px;
  max-height: 38px;
  object-fit: contain;
  object-position: left center;
}

.topnav {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 4px;
  width: 100%;
}

.topnav a {
  min-width: 0;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.topnav a:hover,
.topnav a:focus-visible,
.topnav a.is-current {
  color: var(--text);
  background: color-mix(in srgb, var(--accent-soft) 58%, transparent);
}

.topbar__actions {
  justify-self: end;
  align-items: center;
  gap: 8px;
}

.region-pill {
  min-height: 36px;
  padding: 5px 8px;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--line) 88%, transparent);
  background: color-mix(in srgb, var(--surface-strong) 92%, transparent);
  backdrop-filter: blur(16px);
}

.region-pill__badge,
.region-pill__meta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.69rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.region-pill__badge {
  background: color-mix(in srgb, var(--accent-soft) 66%, transparent);
  color: var(--text);
}

.region-pill__meta-pill {
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  color: var(--muted);
}

.theme-toggle {
  padding: 3px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--line) 90%, transparent);
  background: color-mix(in srgb, var(--surface-strong) 92%, transparent);
  backdrop-filter: blur(16px);
}

.theme-toggle__button,
.ghost-button,
.mini-button,
.chip-button,
.browse-chip,
.category-chip,
.tab,
.workspace-picker__choice,
.workspace-picker__close,
.entry-choice,
.entry-back {
  position: relative;
  isolation: isolate;
  backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 10px 24px rgba(0, 0, 0, 0.08);
}

.theme-toggle__button::after,
.ghost-button::after,
.mini-button::after,
.chip-button::after,
.browse-chip::after,
.category-chip::after,
.tab::after,
.workspace-picker__choice::after,
.workspace-picker__close::after,
.entry-choice::after,
.entry-back::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  opacity: 0.65;
  z-index: -1;
}

.theme-toggle__button,
.ghost-button,
.mini-button,
.chip-button,
.browse-chip,
.category-chip,
.tab {
  border-radius: 999px;
}

body[data-page="home"] .hero {
  padding-top: 18px;
  padding-bottom: 4px;
}

body[data-page="home"] .hero__frame--launch {
  max-width: 1140px;
  margin: 0 auto;
  padding: 8px 0 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body[data-page="home"] .hero__content--launch {
  gap: 10px;
  align-items: center;
  text-align: center;
}

body[data-page="home"] .hero__content--launch h1 {
  max-width: 11ch;
  margin-inline: auto;
  font-size: clamp(2.85rem, 6vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

body[data-page="home"] .hero__lede {
  max-width: 34rem;
  margin-inline: auto;
  font-size: 1rem;
  line-height: 1.46;
  color: var(--muted);
  text-wrap: pretty;
}

body[data-page="home"] .hero-search {
  width: min(560px, 100%);
  margin-top: 4px;
  padding: 7px;
  gap: 8px;
  border-radius: 18px;
  border: 1px solid color-mix(in srgb, var(--line) 90%, transparent);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  box-shadow: none;
}

body[data-page="home"] .hero-search input {
  padding: 11px 14px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--surface-strong) 86%, transparent);
}

body[data-page="home"] .hero-search button {
  min-width: 116px;
  padding: 0 18px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent-soft) 70%, var(--surface));
}

body[data-theme="light"] body[data-page="home"] .hero-search input,
body[data-page="home"][data-theme="light"] .hero-search input,
body[data-theme="light"] .hero-search input {
  background: color-mix(in srgb, #eef3f8 88%, #ffffff);
}

body[data-page="home"] .hero__chips {
  justify-content: center;
  gap: 8px;
}

main,
body[data-page="home"] main {
  width: min(1210px, calc(100vw - 28px));
  gap: 24px;
}

.section,
.hub,
.hero {
  gap: 16px;
  padding-top: 18px;
}

.section-heading.section-heading--center {
  margin-bottom: 8px;
}

.section-heading--center h2 {
  max-width: 18ch;
  margin-inline: auto;
  text-wrap: balance;
}

.home-news-grid--hero,
.news-layout {
  gap: 14px;
}

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

.home-news-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.preview-grid--learning-home {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

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

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

.home-news-feature,
.home-news-card,
.news-card,
.learning-card,
.preview-grid--learning-home .preview-card,
.coming-soon-card,
.fun-surface {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 10px;
  padding: 14px;
  border-radius: 24px;
  border: 1px solid color-mix(in srgb, var(--line) 88%, transparent);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: none;
}

.home-news-feature,
.home-news-card,
.news-card,
.learning-card,
.preview-grid--learning-home .preview-card {
  overflow: hidden;
}

.home-news-feature__media,
.home-news-card__media,
.news-card__media,
.learning-card__media,
.preview-card__media,
.joke-briefcase__image {
  overflow: hidden;
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface-strong) 92%, transparent);
}

.home-news-feature__media,
.home-news-card__media,
.news-card__media,
.learning-card__media,
.preview-card__media {
  aspect-ratio: 16 / 10;
}

.home-news-feature__media img,
.home-news-card__media img,
.news-card__media img,
.learning-card__media img,
.preview-card__media img,
.joke-briefcase__asset {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.home-news-feature__body,
.home-news-card__body,
.news-card__body,
.feature-story__body,
.preview-grid--learning-home .preview-card,
.learning-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.source-identity,
.source-identity--compact,
.list-card__meta,
.preview-card__list,
.tag-row {
  width: 100%;
  min-width: 0;
}

.source-identity__label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-news-feature__body h3,
.home-news-card__body h3,
.news-card__body h3,
.preview-grid--learning-home .preview-card h3,
.learning-card h3 {
  width: 100%;
  margin: 0;
  text-wrap: balance;
  line-height: 1.06;
}

.home-news-card__body h3,
.news-card__body h3,
.preview-grid--learning-home .preview-card h3,
.learning-card h3 {
  font-size: 1rem;
}

.home-news-feature__body > p,
.home-news-card__body > p,
.news-card__body > p,
.preview-grid--learning-home .preview-card p,
.learning-card p {
  width: 100%;
  margin: 0;
  line-height: 1.48;
  text-wrap: pretty;
}

.home-news-feature__body > p,
.home-news-card__body > p,
.news-card__body > p,
.preview-grid--learning-home .preview-card p,
.learning-card > p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-news-card__why,
.news-card__why,
.detail-block--news p {
  width: 100%;
  margin: 0;
  line-height: 1.52;
  text-wrap: pretty;
}

.home-news-card__why,
.news-card__why {
  color: var(--text);
}

.preview-grid--learning-home .preview-card__actions,
.learning-card .button-row,
.learning-card__footer,
.home-news-card__body .text-link--inline,
.news-card__body .text-link--inline,
.coming-soon-card .text-link {
  margin-top: auto;
}

.news-card__body .tag-row,
.home-news-card__body .tag-row,
.preview-grid--learning-home .preview-card__list,
.learning-card .preview-card__list {
  gap: 6px;
}

.feature-story--news {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 16px;
  padding: 16px;
}

.feature-story--news .news-card__media--feature {
  aspect-ratio: 16 / 12;
  border-radius: 20px;
  overflow: hidden;
}

.feature-story__body > p {
  display: block;
}

.coming-soon-card h3,
.coming-soon-card p {
  margin: 0;
}

.coming-soon-card p {
  line-height: 1.5;
}

.page-loader {
  background: #000000;
  backdrop-filter: none;
}

.page-loader__card {
  min-width: min(460px, calc(100vw - 36px));
  padding: 28px 28px 24px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.page-loader__brand {
  min-height: 46px;
}

.page-loader__logo {
  display: block;
  width: auto;
  height: 42px;
}

.page-loader__mark {
  width: 24px;
  height: 24px;
}

.page-loader__label {
  color: rgba(244, 247, 251, 0.9);
}

.fun-page {
  max-width: 980px;
  margin-inline: auto;
}

.fun-surface {
  gap: 18px;
  padding: 18px;
}

.joke-briefcase {
  display: grid;
  gap: 16px;
  align-items: start;
}

.joke-briefcase__image {
  aspect-ratio: 16 / 10;
}

.joke-briefcase__asset {
  display: none;
}

body[data-theme="dark"] .joke-briefcase__asset--dark,
body[data-theme="light"] .joke-briefcase__asset--light {
  display: block;
}

.joke-reveal {
  min-height: 144px;
  padding: 18px 18px 16px;
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--line) 88%, transparent);
  background: color-mix(in srgb, var(--surface-strong) 90%, transparent);
}

.joke-reveal__eyebrow {
  margin: 0 0 8px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.joke-reveal h2 {
  margin: 0 0 10px;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.05;
  text-wrap: balance;
}

.joke-reveal p {
  margin: 0;
  line-height: 1.5;
}

.fun-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.joke-trigger {
  min-height: 44px;
  padding-inline: 18px;
}

.fun-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.joke-briefcase.is-opening .joke-briefcase__image {
  animation: briefcase-glow 0.72s var(--ease-premium);
}

.joke-briefcase.is-opening .joke-reveal {
  animation: briefcase-drawer 0.72s var(--ease-premium);
}

@keyframes briefcase-glow {
  0% { transform: scale(1); filter: brightness(1); }
  40% { transform: scale(1.015); filter: brightness(1.06); }
  100% { transform: scale(1); filter: brightness(1); }
}

@keyframes briefcase-drawer {
  0% { transform: translateY(0); opacity: 0.76; }
  35% { transform: translateY(10px); opacity: 0.4; }
  100% { transform: translateY(0); opacity: 1; }
}

@media (max-width: 1100px) {
  .home-news-list,
  .preview-grid--learning-home,
  .coming-soon-grid,
  .news-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .topbar {
    width: calc(100vw - 18px);
    min-height: 54px;
    padding: 7px 10px 7px 14px;
    border-radius: 22px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }

  .brand-lockup {
    min-width: 0;
    width: 148px;
    padding-left: 2px;
  }

  .brand-lockup__logo {
    height: 30px;
    max-height: 30px;
  }

  .topbar__actions {
    gap: 6px;
  }

  .topbar__actions .region-pill,
  .topbar__actions .theme-toggle {
    display: none;
  }

  .topbar__menu-button {
    width: 34px;
    min-width: 34px;
    height: 34px;
    border-radius: 999px;
  }

  main,
  body[data-page="home"] main {
    width: calc(100vw - 18px);
    gap: 20px;
  }

  body[data-page="home"] .hero {
    padding-top: 14px;
  }

  body[data-page="home"] .hero__content--launch h1 {
    font-size: clamp(2.2rem, 11vw, 3.5rem);
  }

  .home-news-feature-grid,
  .feature-story--news {
    grid-template-columns: 1fr;
  }

  .home-news-list,
  .preview-grid--learning-home,
  .coming-soon-grid,
  .news-stack {
    grid-template-columns: 1fr;
  }

  .mobile-menu {
    top: calc(10px + env(safe-area-inset-top, 0px));
    left: 10px;
    right: 10px;
    width: auto;
    padding: 16px;
    border-radius: 22px;
  }

  .mobile-menu__links {
    gap: 8px;
  }

  .mobile-menu__links a {
    padding: 12px 14px;
    border-radius: 16px;
  }
}

@media (max-width: 640px) {
  .topbar {
    width: calc(100vw - 14px);
    min-height: 50px;
    padding: 6px 8px 6px 12px;
  }

  .brand-lockup {
    width: 152px;
  }

  .brand-lockup__logo {
    height: 31px;
    max-height: 31px;
  }

  body[data-page="home"] .hero-search {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }

  body[data-page="home"] .hero-search input {
    min-width: 0;
    background: color-mix(in srgb, var(--surface-strong) 88%, transparent);
  }

  body[data-page="home"] .hero-search button {
    min-width: 104px;
    background: color-mix(in srgb, var(--accent-soft) 74%, var(--surface));
  }

  .home-news-card,
  .news-card,
  .learning-card,
  .preview-grid--learning-home .preview-card,
  .coming-soon-card,
  .fun-surface {
    padding: 12px;
    border-radius: 20px;
  }

  .home-news-card__body,
  .news-card__body,
  .learning-card,
  .preview-grid--learning-home .preview-card {
    gap: 7px;
  }

  .home-news-feature__body h3,
  .home-news-card__body h3,
  .news-card__body h3,
  .preview-grid--learning-home .preview-card h3,
  .learning-card h3 {
    font-size: 0.98rem;
  }

  .home-news-card__body > p,
  .news-card__body > p,
  .learning-card > p,
  .preview-grid--learning-home .preview-card p,
  .home-news-card__why,
  .news-card__why {
    font-size: 0.88rem;
  }

  .fun-actions {
    align-items: stretch;
  }

    .joke-trigger {
      width: 100%;
    }
  }

@media (max-width: 820px) {
  .site-shell,
  body,
  main {
    overflow-x: hidden;
  }

  .topnav {
    display: none !important;
  }

  .topbar {
    width: calc(100vw - 18px) !important;
    min-height: 52px !important;
    padding: 6px 10px 6px 14px !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 8px !important;
  }

  .brand-lockup {
    width: 154px !important;
    min-width: 0 !important;
    padding-left: 2px !important;
  }

  .brand-lockup__logo {
    height: 31px !important;
    max-height: 31px !important;
  }

  .topbar__actions {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 6px !important;
  }

  .topbar__actions .region-pill,
  .topbar__actions .theme-toggle {
    display: none !important;
  }

  .topbar__menu-button {
    display: inline-flex !important;
    width: 34px !important;
    min-width: 34px !important;
    height: 34px !important;
  }

  body[data-page="home"] main,
  main {
    width: calc(100vw - 18px) !important;
    max-width: calc(100vw - 18px) !important;
    gap: 18px !important;
  }

  body[data-page="home"] .hero,
  body[data-page="home"] .hero__frame--launch,
  body[data-page="home"] .hero__content--launch,
  .home-news-grid--hero,
  .home-news-feature-grid,
  .home-news-list,
  .preview-grid--learning-home,
  .coming-soon-grid,
  .news-layout,
  .news-stack,
  .learning-grid {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  body[data-page="home"] .hero {
    padding-top: 12px !important;
  }

  body[data-page="home"] .hero__frame--launch {
    padding-top: 8px !important;
  }

  .home-news-feature-grid,
  .home-news-list,
  .preview-grid--learning-home,
  .coming-soon-grid,
  .news-stack,
  .learning-grid,
  .feature-story--news,
  .home-news-card,
  .news-card {
    grid-template-columns: 1fr !important;
  }

  .home-news-card,
  .news-card,
  .learning-card,
  .preview-grid--learning-home .preview-card,
  .coming-soon-card,
  .fun-surface {
    width: 100% !important;
  }

  .home-news-card__media,
  .news-card__media,
  .preview-card__media,
  .learning-card__media {
    width: 100% !important;
    aspect-ratio: 16 / 10 !important;
  }

  .home-news-card__body,
  .news-card__body,
  .learning-card,
  .preview-grid--learning-home .preview-card {
    width: 100% !important;
    min-width: 0 !important;
  }

  .mobile-menu {
    top: calc(10px + env(safe-area-inset-top, 0px)) !important;
    left: 10px !important;
    right: 10px !important;
    width: auto !important;
  }
}

@media (max-width: 640px) {
  .topbar {
    width: calc(100vw - 14px) !important;
    min-height: 50px !important;
    padding: 6px 8px 6px 12px !important;
  }

  .brand-lockup {
    width: 148px !important;
  }

  .brand-lockup__logo {
    height: 30px !important;
    max-height: 30px !important;
  }

  body[data-page="home"] main,
  main {
    width: calc(100vw - 14px) !important;
    max-width: calc(100vw - 14px) !important;
  }
}

/* Launch precision polish */

html[data-theme="dark"] .brand-lockup__logo--dark,
html[data-theme="light"] .brand-lockup__logo--light,
html[data-theme="dark"] .powered-mark__logo--dark,
html[data-theme="light"] .powered-mark__logo--light,
html[data-theme="dark"] .joke-briefcase__asset--dark,
html[data-theme="light"] .joke-briefcase__asset--light,
html[data-theme="dark"] .page-loader__logo--dark,
html[data-theme="light"] .page-loader__logo--light {
  display: block !important;
}

html[data-theme="dark"] .brand-lockup__logo--light,
html[data-theme="light"] .brand-lockup__logo--dark,
html[data-theme="dark"] .powered-mark__logo--light,
html[data-theme="light"] .powered-mark__logo--dark,
html[data-theme="dark"] .joke-briefcase__asset--light,
html[data-theme="light"] .joke-briefcase__asset--dark,
html[data-theme="dark"] .page-loader__logo--light,
html[data-theme="light"] .page-loader__logo--dark {
  display: none !important;
}

.topbar {
  top: 10px !important;
  width: min(1224px, calc(100vw - 30px)) !important;
  min-height: 62px !important;
  padding: 9px 18px 9px 28px !important;
  grid-template-columns: minmax(184px, auto) minmax(0, 1fr) auto !important;
  gap: 14px !important;
}

.brand-lockup {
  min-width: 184px !important;
  padding-left: 14px !important;
}

.brand-lockup__logo {
  height: 40px !important;
  max-height: 40px !important;
}

.topnav {
  justify-content: center !important;
  gap: 6px !important;
}

.topnav a {
  padding: 8px 10px !important;
  font-size: 0.735rem !important;
  letter-spacing: 0.075em !important;
}

.topbar__actions {
  gap: 10px !important;
}

.region-pill {
  cursor: pointer;
  min-height: 38px !important;
  padding: 5px 10px !important;
  gap: 6px !important;
}

.region-pill:hover,
.region-pill:focus-visible {
  border-color: color-mix(in srgb, var(--accent-soft) 64%, transparent);
  transform: translateY(-1px);
}

.region-pill__badge,
.region-pill__meta-pill {
  min-height: 24px !important;
  padding: 0 10px !important;
}

.theme-toggle {
  min-height: 38px;
}

.theme-toggle__button {
  min-height: 30px;
  min-width: 54px;
}

main,
body[data-page="home"] main {
  width: min(1224px, calc(100vw - 30px)) !important;
  gap: 20px !important;
}

.section,
.hub,
.hero {
  padding-top: 16px !important;
  gap: 14px !important;
}

body[data-page="home"] .hero {
  padding-top: 14px !important;
  padding-bottom: 2px !important;
}

body[data-page="home"] .hero__frame--launch {
  max-width: 1128px !important;
  padding-top: 4px !important;
}

body[data-page="home"] .hero__content--launch {
  gap: 8px !important;
}

body[data-page="home"] .hero__content--launch h1 {
  max-width: 10.4ch !important;
  font-size: clamp(2.55rem, 5.4vw, 4.65rem) !important;
  line-height: 0.95 !important;
}

body[data-page="home"] .hero__lede {
  font-size: 0.98rem !important;
  max-width: 30rem !important;
}

body[data-page="home"] .hero-search {
  width: min(520px, 100%) !important;
  margin-top: 2px !important;
  padding: 6px !important;
}

body[data-page="home"] .hero-search input {
  padding: 11px 14px !important;
}

body[data-page="home"] .hero-search button {
  min-width: 114px !important;
}

.news-status {
  margin-bottom: 2px;
}

.home-news-grid--hero,
.news-layout {
  gap: 12px !important;
}

.home-news-feature-grid {
  gap: 12px !important;
}

.home-news-list,
.preview-grid--learning-home,
.news-stack {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.coming-soon-grid {
  gap: 12px !important;
}

.home-news-feature,
.home-news-card,
.news-card,
.learning-card,
.preview-grid--learning-home .preview-card,
.coming-soon-card,
.fun-surface {
  gap: 9px !important;
  padding: 13px !important;
  border-radius: 22px !important;
}

.home-news-feature__media,
.home-news-card__media,
.news-card__media,
.learning-card__media,
.preview-card__media,
.joke-briefcase__image {
  border-radius: 16px !important;
}

.home-news-feature__media,
.home-news-card__media,
.news-card__media,
.learning-card__media,
.preview-card__media {
  aspect-ratio: 16 / 9.4 !important;
}

.list-card__meta,
.preview-card__list,
.tag-row,
.source-identity,
.source-identity--compact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
}

.source-identity__logo {
  flex: 0 0 auto;
}

.source-identity__label,
.list-card__meta span,
.preview-card__list span,
.tag-row .tag {
  min-width: 0;
}

.home-news-feature__body,
.home-news-card__body,
.news-card__body,
.feature-story__body,
.preview-grid--learning-home .preview-card,
.learning-card {
  gap: 7px !important;
}

.home-news-card__body h3,
.news-card__body h3,
.preview-grid--learning-home .preview-card h3,
.learning-card h3 {
  font-size: 1rem !important;
  line-height: 1.08 !important;
}

.home-news-feature__body h3,
.feature-story__body h3 {
  line-height: 1.02 !important;
}

.home-news-card__body > p,
.news-card__body > p,
.preview-grid--learning-home .preview-card > p,
.learning-card > p,
.home-news-card__why,
.news-card__why,
.detail-block p {
  font-size: 0.91rem !important;
  line-height: 1.46 !important;
  overflow: visible !important;
}

.home-news-card__body > p,
.news-card__body > p,
.preview-grid--learning-home .preview-card > p,
.learning-card > p {
  -webkit-line-clamp: 4 !important;
}

.home-news-card__why,
.news-card__why,
.detail-block p {
  -webkit-line-clamp: unset !important;
  display: block !important;
}

.home-news-card__body .text-link--inline,
.news-card__body .text-link--inline,
.preview-grid--learning-home .preview-card__actions,
.learning-card__footer,
.feature-story__body .text-link--inline {
  margin-top: auto;
}

.news-layout {
  align-items: start;
}

.feature-story--news {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr) !important;
  gap: 14px !important;
}

.feature-story__body {
  min-width: 0;
  padding: 2px 2px 0 !important;
}

.feature-story__body > p {
  max-width: 58ch;
}

.preview-grid--learning-home .preview-card,
.learning-card {
  min-height: 100%;
}

.page-loader {
  background: #000000 !important;
}

.page-loader__card {
  gap: 14px !important;
}

.page-loader__logo {
  height: 64px !important;
  max-height: 64px !important;
}

.page-loader__label {
  font-size: 0.9rem !important;
}

.powered-mark {
  border-radius: 26px !important;
}

.powered-mark__logo {
  max-width: min(320px, 76vw) !important;
}

@media (max-width: 1120px) {
  .topbar {
    width: calc(100vw - 24px) !important;
    grid-template-columns: minmax(168px, auto) minmax(0, 1fr) auto !important;
    padding: 8px 14px 8px 20px !important;
  }

  .brand-lockup {
    min-width: 168px !important;
    padding-left: 10px !important;
  }

  .brand-lockup__logo {
    height: 37px !important;
    max-height: 37px !important;
  }

  .topnav a {
    padding: 7px 8px !important;
    font-size: 0.7rem !important;
  }

  .home-news-list,
  .preview-grid--learning-home,
  .news-stack,
  .coming-soon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .feature-story--news {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 820px) {
  .topbar {
    width: calc(100vw - 18px) !important;
    min-height: 52px !important;
    padding: 6px 10px 6px 14px !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
  }

  .brand-lockup {
    width: 164px !important;
    min-width: 0 !important;
    padding-left: 4px !important;
  }

  .brand-lockup__logo {
    height: 33px !important;
    max-height: 33px !important;
  }

  .topbar__menu-button {
    width: 34px !important;
    min-width: 34px !important;
    height: 34px !important;
  }

  body[data-page="home"] .hero__content--launch h1 {
    max-width: 9.6ch !important;
    font-size: clamp(2.3rem, 10.4vw, 4rem) !important;
  }

  body[data-page="home"] .hero-search {
    width: 100% !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 7px !important;
  }

  body[data-page="home"] .hero-search input {
    background: color-mix(in srgb, var(--surface-strong) 92%, transparent) !important;
  }

  body[data-page="home"] .hero-search button {
    width: 100% !important;
    background: color-mix(in srgb, var(--accent-soft) 72%, var(--surface)) !important;
  }

  .home-news-list,
  .preview-grid--learning-home,
  .coming-soon-grid,
  .news-layout,
  .news-stack,
  .learning-grid {
    grid-template-columns: 1fr !important;
  }

  .home-news-card,
  .news-card,
  .learning-card,
  .preview-grid--learning-home .preview-card,
  .coming-soon-card,
  .fun-surface {
    padding: 12px !important;
    gap: 8px !important;
  }

  .home-news-card__media,
  .news-card__media,
  .preview-card__media,
  .learning-card__media {
    aspect-ratio: 16 / 10.2 !important;
  }

  .home-news-card__body h3,
  .news-card__body h3,
  .preview-grid--learning-home .preview-card h3,
  .learning-card h3 {
    font-size: 0.98rem !important;
  }

  .home-news-card__body > p,
  .news-card__body > p,
  .preview-grid--learning-home .preview-card > p,
  .learning-card > p,
  .home-news-card__why,
  .news-card__why {
    font-size: 0.88rem !important;
  }

  .mobile-menu__theme .theme-toggle__button {
    min-width: 48px !important;
  }
}

@media (max-width: 520px) {
  .topbar {
    width: calc(100vw - 14px) !important;
    min-height: 50px !important;
    padding: 6px 8px 6px 12px !important;
  }

  .brand-lockup {
    width: 156px !important;
  }

  .brand-lockup__logo {
    height: 31px !important;
    max-height: 31px !important;
  }

  body[data-page="home"] .hero__frame--launch {
    padding-top: 2px !important;
  }

  body[data-page="home"] .hero__content--launch h1 {
    font-size: clamp(2.1rem, 10.2vw, 3.1rem) !important;
  }

  .section,
  .hub,
  .hero {
    padding-top: 14px !important;
  }

  .powered-mark {
    padding: 18px 14px !important;
  }
}

/* Final splash dock alignment */

body.splash-page .entry-card {
  left: 50% !important;
  right: auto !important;
  top: auto !important;
  bottom: max(22px, env(safe-area-inset-bottom, 0px)) !important;
  transform: translateX(-50%) !important;
  width: min(430px, calc(100vw - 40px)) !important;
  max-height: min(42vh, 330px) !important;
  padding: 16px !important;
  border-radius: 22px !important;
}

@media (max-width: 820px) {
  body.splash-page .entry-card {
    bottom: max(14px, env(safe-area-inset-bottom, 0px)) !important;
    width: min(92vw, 368px) !important;
    max-height: min(50vh, 420px) !important;
  }
}

@media (max-width: 640px) {
  body.splash-page .entry-card {
    width: calc(100vw - 16px) !important;
    bottom: max(10px, env(safe-area-inset-bottom, 0px)) !important;
    max-height: min(52vh, 430px) !important;
    padding: 14px !important;
  }
}

/* Final home hero alignment endcap */

body[data-page="home"] .hero {
  padding-top: 6px !important;
  padding-bottom: 0 !important;
}

body[data-page="home"] .hero__frame--launch {
  max-width: 1140px !important;
  padding: 0 !important;
  gap: 10px !important;
}

body[data-page="home"] .hero__content--launch {
  max-width: 1080px !important;
  margin: 0 auto !important;
  display: grid !important;
  justify-items: center !important;
  align-content: start !important;
  gap: 6px !important;
  text-align: center !important;
}

body[data-page="home"] .hero__content--launch .eyebrow {
  margin: 0 !important;
}

body[data-page="home"] .hero__content--launch h1 {
  max-width: 13.2ch !important;
  margin: 0 auto !important;
  font-size: clamp(2.45rem, 4.25vw, 4.15rem) !important;
  line-height: 0.91 !important;
  letter-spacing: -0.055em !important;
  text-wrap: balance !important;
}

body[data-page="home"] .hero__lede {
  max-width: 32rem !important;
  margin: 2px auto 0 !important;
  font-size: 0.96rem !important;
  line-height: 1.38 !important;
  text-align: center !important;
}

body[data-page="home"] .hero-search {
  width: min(540px, 100%) !important;
  margin-top: 8px !important;
}

body[data-page="home"] .hero__chips {
  justify-content: center !important;
  margin-top: 8px !important;
}

body[data-page="home"] .hero-divider {
  width: min(1100px, 100%) !important;
  margin: 10px auto 0 !important;
}

body[data-page="home"] .home-news-grid--hero {
  width: min(1100px, 100%) !important;
  margin-top: 8px !important;
}

@media (max-width: 900px) {
  body[data-page="home"] .hero__content--launch h1 {
    max-width: 12.2ch !important;
    font-size: clamp(2.15rem, 7.6vw, 3.45rem) !important;
  }

  body[data-page="home"] .hero__lede {
    max-width: 28rem !important;
    font-size: 0.92rem !important;
  }
}

@media (max-width: 640px) {
  body[data-page="home"] .hero {
    padding-top: 4px !important;
  }

  body[data-page="home"] .hero__content--launch {
    gap: 5px !important;
  }

  body[data-page="home"] .hero__content--launch h1 {
    max-width: 10.8ch !important;
    font-size: clamp(1.9rem, 8.1vw, 2.65rem) !important;
    line-height: 0.93 !important;
  }

  body[data-page="home"] .hero__lede {
    max-width: 22rem !important;
    font-size: 0.88rem !important;
  }

  body[data-page="home"] .hero-search {
    margin-top: 8px !important;
  }

  body[data-page="home"] .hero-divider {
    margin-top: 8px !important;
  }

  body[data-page="home"] .home-news-grid--hero {
    margin-top: 6px !important;
  }
}

/* Homepage density and compact compartment restoration */

body[data-page="home"] main,
body[data-page="news"] main,
body[data-page="learn"] main {
  gap: 16px !important;
}

body[data-page="home"] .hero {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

body[data-page="home"] .hero__frame--launch {
  max-width: 1080px !important;
  padding: 0 !important;
}

body[data-page="home"] .hero__content--launch {
  max-width: 940px !important;
  gap: 6px !important;
}

body[data-page="home"] .hero__content--launch h1 {
  max-width: 10.9ch !important;
  margin: 0 auto !important;
  font-size: clamp(2.8rem, 5vw, 4.2rem) !important;
  line-height: 0.94 !important;
  letter-spacing: -0.052em !important;
  text-align: center !important;
}

body[data-page="home"] .hero__lede {
  max-width: 27rem !important;
  margin: 2px auto 0 !important;
  font-size: 0.94rem !important;
  line-height: 1.36 !important;
  text-align: center !important;
}

body[data-page="home"] .hero-search {
  width: min(600px, 100%) !important;
  margin-top: 8px !important;
  padding: 7px !important;
  border-radius: 18px !important;
}

body[data-page="home"] .hero-search input {
  min-height: 42px !important;
  padding: 0 14px !important;
  font-size: 0.98rem !important;
}

body[data-page="home"] .hero-search button {
  min-height: 42px !important;
  min-width: 108px !important;
  padding: 0 18px !important;
}

body[data-page="home"] .hero__chips {
  justify-content: center !important;
  gap: 8px !important;
  margin-top: 6px !important;
}

body[data-page="home"] .hero-divider {
  width: min(1100px, 100%) !important;
  margin: 8px auto 0 !important;
}

body[data-page="home"] .home-news-grid--hero {
  width: min(1100px, 100%) !important;
  margin: 6px auto 0 !important;
  gap: 10px !important;
}

body[data-page="home"] .section,
body[data-page="news"] .hub,
body[data-page="learn"] .hub {
  padding-top: 4px !important;
  padding-bottom: 0 !important;
}

body[data-page="home"] .section-heading,
body[data-page="news"] .section-heading,
body[data-page="learn"] .section-heading {
  gap: 6px !important;
  margin-bottom: 10px !important;
}

body[data-page="home"] .home-news-feature-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

body[data-page="home"] .home-news-list {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

body[data-page="home"] .preview-grid--learning-home,
body[data-page="learn"] .learning-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

body[data-page="news"] .news-layout {
  gap: 10px !important;
}

body[data-page="news"] .news-stack {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

body[data-page="home"] .home-news-feature,
body[data-page="home"] .home-news-card,
body[data-page="news"] .feature-story--news,
body[data-page="news"] .news-card,
body[data-page="home"] .preview-grid--learning-home .preview-card,
body[data-page="learn"] .learning-card {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: stretch !important;
  min-width: 0 !important;
  min-height: 0 !important;
  gap: 8px !important;
  padding: 12px !important;
  border-radius: 20px !important;
  background: color-mix(in srgb, var(--surface) 95%, transparent) !important;
  border: 1px solid color-mix(in srgb, var(--line-strong) 74%, transparent) !important;
  box-shadow:
    0 14px 26px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

body[data-page="home"] .home-news-feature__body,
body[data-page="home"] .home-news-card__body,
body[data-page="news"] .feature-story__body,
body[data-page="news"] .news-card__body,
body[data-page="home"] .preview-grid--learning-home .preview-card,
body[data-page="learn"] .learning-card {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
  min-width: 0 !important;
  width: 100% !important;
}

body[data-page="home"] .home-news-feature__body *,
body[data-page="home"] .home-news-card__body *,
body[data-page="news"] .feature-story__body *,
body[data-page="news"] .news-card__body *,
body[data-page="home"] .preview-grid--learning-home .preview-card *,
body[data-page="learn"] .learning-card * {
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
  white-space: normal !important;
  overflow-wrap: break-word !important;
  word-break: normal !important;
}

body[data-page="home"] .home-news-feature__media,
body[data-page="home"] .home-news-card__media,
body[data-page="news"] .feature-story--news .news-card__media--feature,
body[data-page="news"] .news-card__media,
body[data-page="home"] .preview-grid--learning-home .preview-card__media,
body[data-page="learn"] .learning-card__media {
  width: 100% !important;
  min-width: 0 !important;
  overflow: hidden !important;
  border-radius: 14px !important;
  background: color-mix(in srgb, var(--surface-soft) 74%, transparent) !important;
}

body[data-page="home"] .home-news-feature__media,
body[data-page="news"] .feature-story--news .news-card__media--feature {
  min-height: 184px !important;
  aspect-ratio: 16 / 9.4 !important;
}

body[data-page="home"] .home-news-card__media,
body[data-page="news"] .news-card__media,
body[data-page="home"] .preview-grid--learning-home .preview-card__media,
body[data-page="learn"] .learning-card__media {
  min-height: 132px !important;
  aspect-ratio: 16 / 10 !important;
}

body[data-page="home"] .home-news-feature__media img,
body[data-page="home"] .home-news-card__media img,
body[data-page="news"] .feature-story--news .news-card__media--feature img,
body[data-page="news"] .news-card__media img,
body[data-page="home"] .preview-grid--learning-home .preview-card__media img,
body[data-page="learn"] .learning-card__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

body[data-page="news"] .feature-story--news {
  display: grid !important;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1fr) !important;
  gap: 12px !important;
  align-items: stretch !important;
}

body[data-page="home"] .home-news-feature__body h3,
body[data-page="news"] .feature-story__body h3 {
  margin: 0 !important;
  font-size: clamp(1.24rem, 1.8vw, 1.7rem) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.04em !important;
  text-wrap: balance !important;
}

body[data-page="home"] .home-news-card__body h3,
body[data-page="news"] .news-card__body h3,
body[data-page="home"] .preview-grid--learning-home .preview-card h3,
body[data-page="learn"] .learning-card h3 {
  margin: 0 !important;
  font-size: 0.97rem !important;
  line-height: 1.12 !important;
  letter-spacing: -0.025em !important;
  text-wrap: balance !important;
}

body[data-page="home"] .home-news-feature__body > p,
body[data-page="news"] .feature-story__body > p {
  margin: 0 !important;
  font-size: 0.9rem !important;
  line-height: 1.46 !important;
}

body[data-page="home"] .home-news-card__body > p,
body[data-page="home"] .home-news-card__why,
body[data-page="news"] .news-card__body > p,
body[data-page="news"] .news-card__why,
body[data-page="home"] .preview-grid--learning-home .preview-card > p,
body[data-page="learn"] .learning-card > p {
  margin: 0 !important;
  font-size: 0.84rem !important;
  line-height: 1.42 !important;
}

body[data-page="home"] .home-news-card__why,
body[data-page="news"] .news-card__why {
  color: var(--muted) !important;
}

body[data-page="home"] .list-card__meta,
body[data-page="news"] .list-card__meta,
body[data-page="home"] .preview-card__list,
body[data-page="learn"] .preview-card__list,
.tag-row {
  gap: 6px !important;
}

body[data-page="home"] .list-card__meta span,
body[data-page="news"] .list-card__meta span,
body[data-page="home"] .preview-card__list span,
body[data-page="learn"] .preview-card__list span,
.tag {
  padding: 5px 8px !important;
  font-size: 0.72rem !important;
}

body[data-page="home"] .home-news-card__body .text-link--inline,
body[data-page="news"] .news-card__body .text-link--inline,
body[data-page="news"] .feature-story__body .text-link--inline,
body[data-page="home"] .preview-card__actions,
body[data-page="learn"] .learning-card__footer {
  margin-top: auto !important;
}

body[data-page="home"] .news-status,
body[data-page="news"] .news-status {
  padding: 8px 12px !important;
  border-radius: 16px !important;
}

@media (max-width: 1180px) {
  body[data-page="home"] .home-news-list,
  body[data-page="home"] .preview-grid--learning-home,
  body[data-page="learn"] .learning-grid,
  body[data-page="news"] .news-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 980px) {
  body[data-page="home"] .home-news-feature-grid,
  body[data-page="home"] .home-news-list,
  body[data-page="home"] .preview-grid--learning-home,
  body[data-page="learn"] .learning-grid,
  body[data-page="news"] .news-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body[data-page="news"] .feature-story--news {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 820px) {
  body[data-page="home"] .hero__content--launch h1 {
    max-width: 11.1ch !important;
    font-size: clamp(1.82rem, 7.7vw, 2.55rem) !important;
    line-height: 0.96 !important;
    text-align: center !important;
  }

  body[data-page="home"] .hero__lede {
    max-width: 18rem !important;
    font-size: 0.88rem !important;
  }

  body[data-page="home"] .hero-search {
    width: 100% !important;
    grid-template-columns: minmax(0, 1fr) 104px !important;
    gap: 8px !important;
  }

  body[data-page="home"] .hero-search input {
    min-height: 42px !important;
    background: color-mix(in srgb, var(--surface-strong) 88%, transparent) !important;
  }

  body[data-page="home"] .hero-search button {
    min-height: 42px !important;
  }

  body[data-page="home"] .home-news-feature-grid,
  body[data-page="home"] .home-news-list,
  body[data-page="home"] .preview-grid--learning-home,
  body[data-page="news"] .news-layout,
  body[data-page="news"] .news-stack,
  body[data-page="learn"] .learning-grid {
    grid-template-columns: 1fr !important;
  }

  body[data-page="home"] .home-news-feature,
  body[data-page="home"] .home-news-card,
  body[data-page="news"] .feature-story--news,
  body[data-page="news"] .news-card,
  body[data-page="home"] .preview-grid--learning-home .preview-card,
  body[data-page="learn"] .learning-card {
    padding: 12px !important;
  }

  body[data-page="home"] .home-news-feature__media,
  body[data-page="home"] .home-news-card__media,
  body[data-page="news"] .feature-story--news .news-card__media--feature,
  body[data-page="news"] .news-card__media,
  body[data-page="home"] .preview-grid--learning-home .preview-card__media,
  body[data-page="learn"] .learning-card__media {
    min-height: 164px !important;
    aspect-ratio: 16 / 10 !important;
  }
}

/* Final launch-quality navbar and compartment restoration */

@media (min-width: 981px) {
  .topbar {
    width: min(1320px, calc(100vw - 36px)) !important;
    min-height: 64px !important;
    grid-template-columns: minmax(126px, 148px) minmax(0, 1fr) auto !important;
    gap: 10px !important;
    padding: 10px 18px 10px 24px !important;
    border-radius: 34px !important;
  }

  .topbar::before {
    opacity: 0.88;
  }

  .brand-lockup {
    width: 124px !important;
    min-width: 124px !important;
    padding-left: 10px !important;
  }

  .brand-lockup__logo {
    height: 44px !important;
    max-height: 44px !important;
    object-position: left center !important;
  }

  .topnav {
    justify-content: center !important;
    gap: 4px !important;
    min-width: 0 !important;
  }

  .topnav a {
    min-width: 0 !important;
    min-height: 36px !important;
    padding: 9px 8px !important;
    font-size: 0.73rem !important;
    letter-spacing: 0.08em !important;
    white-space: nowrap !important;
  }

  .topnav a:first-child {
    margin-left: 10px !important;
  }

  .topbar__actions {
    justify-self: end !important;
    gap: 8px !important;
    margin-left: 14px !important;
  }

  .region-pill {
    min-height: 38px !important;
    padding: 4px !important;
    gap: 4px !important;
    border-radius: 999px !important;
  }

  .region-pill__badge,
  .region-pill__meta-pill {
    min-height: 28px !important;
    padding: 0 12px !important;
    font-size: 0.71rem !important;
    letter-spacing: 0.08em !important;
  }

  .theme-toggle {
    min-height: 38px !important;
    padding: 3px !important;
  }

  .theme-toggle__button {
    min-width: 58px !important;
    min-height: 30px !important;
    padding: 4px 10px !important;
    font-size: 0.74rem !important;
  }
}

body[data-page="home"] main,
body[data-page="news"] main,
body[data-page="learn"] main {
  gap: 18px !important;
}

body[data-page="home"] .hero {
  padding-top: 2px !important;
  padding-bottom: 0 !important;
}

body[data-page="home"] .hero__frame--launch {
  max-width: 1120px !important;
  padding: 0 !important;
}

body[data-page="home"] .hero__content--launch {
  max-width: 980px !important;
  gap: 8px !important;
}

body[data-page="home"] .hero__content--launch h1 {
  max-width: 11.6ch !important;
  margin: 0 auto !important;
  font-size: clamp(3.1rem, 5.8vw, 5.05rem) !important;
  line-height: 0.93 !important;
  text-align: center !important;
  text-wrap: balance !important;
}

body[data-page="home"] .hero__lede {
  max-width: 30rem !important;
  margin: 4px auto 0 !important;
  font-size: 1rem !important;
  text-align: center !important;
}

body[data-page="home"] .hero-search {
  width: min(640px, 100%) !important;
  margin-top: 10px !important;
  padding: 8px !important;
  border-radius: 20px !important;
}

body[data-page="home"] .hero__chips {
  justify-content: center !important;
  gap: 10px !important;
  margin-top: 8px !important;
}

body[data-page="home"] .hero-divider {
  width: min(1120px, 100%) !important;
  margin: 12px auto 0 !important;
}

body[data-page="home"] .home-news-grid--hero {
  width: min(1120px, 100%) !important;
  margin-top: 10px !important;
  gap: 14px !important;
}

body[data-page="home"] .section,
body[data-page="news"] .hub,
body[data-page="learn"] .hub {
  padding-top: 8px !important;
  padding-bottom: 0 !important;
}

body[data-page="home"] .section-heading,
body[data-page="news"] .section-heading,
body[data-page="learn"] .section-heading {
  gap: 8px !important;
  margin-bottom: 12px !important;
}

body[data-page="home"] .section-heading h2,
body[data-page="news"] .section-heading h2,
body[data-page="learn"] .section-heading h2 {
  max-width: 20ch !important;
}

body[data-page="home"] .home-news-feature-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

body[data-page="home"] .home-news-list,
body[data-page="home"] .preview-grid--learning-home,
body[data-page="news"] .news-stack,
body[data-page="learn"] .learning-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
  align-items: start !important;
}

body[data-page="home"] .home-news-feature,
body[data-page="home"] .home-news-card,
body[data-page="news"] .news-card,
body[data-page="learn"] .learning-card,
body[data-page="home"] .preview-grid--learning-home .preview-card,
body[data-page="news"] .feature-story--news {
  background: color-mix(in srgb, var(--surface) 96%, transparent) !important;
  border: 1px solid color-mix(in srgb, var(--line-strong) 78%, transparent) !important;
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

body[data-page="home"] .home-news-feature,
body[data-page="home"] .home-news-card,
body[data-page="news"] .news-card,
body[data-page="learn"] .learning-card,
body[data-page="home"] .preview-grid--learning-home .preview-card {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: stretch !important;
  min-width: 0 !important;
  min-height: 0 !important;
  gap: 12px !important;
  padding: 16px !important;
  border-radius: 24px !important;
  overflow: hidden !important;
}

body[data-page="news"] .feature-story--news {
  display: grid !important;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr) !important;
  gap: 18px !important;
  align-items: stretch !important;
  padding: 18px !important;
  border-radius: 28px !important;
}

body[data-page="home"] .home-news-feature__body,
body[data-page="home"] .home-news-card__body,
body[data-page="news"] .news-card__body,
body[data-page="news"] .feature-story__body,
body[data-page="learn"] .learning-card,
body[data-page="home"] .preview-grid--learning-home .preview-card {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  min-width: 0 !important;
  width: 100% !important;
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
}

body[data-page="home"] .home-news-feature__body *,
body[data-page="home"] .home-news-card__body *,
body[data-page="news"] .news-card__body *,
body[data-page="news"] .feature-story__body *,
body[data-page="learn"] .learning-card *,
body[data-page="home"] .preview-grid--learning-home .preview-card * {
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
  white-space: normal !important;
  overflow-wrap: break-word !important;
  word-break: normal !important;
}

body[data-page="home"] .home-news-feature__media,
body[data-page="home"] .home-news-card__media,
body[data-page="news"] .news-card__media,
body[data-page="news"] .feature-story--news .news-card__media--feature,
body[data-page="learn"] .learning-card__media,
body[data-page="home"] .preview-grid--learning-home .preview-card__media {
  position: relative !important;
  width: 100% !important;
  min-width: 0 !important;
  overflow: hidden !important;
  border-radius: 18px !important;
  background: color-mix(in srgb, var(--surface-soft) 72%, transparent) !important;
}

body[data-page="home"] .home-news-card__media,
body[data-page="news"] .news-card__media,
body[data-page="learn"] .learning-card__media,
body[data-page="home"] .preview-grid--learning-home .preview-card__media {
  min-height: 176px !important;
  aspect-ratio: 16 / 10 !important;
}

body[data-page="home"] .home-news-feature__media,
body[data-page="news"] .feature-story--news .news-card__media--feature {
  min-height: 232px !important;
  aspect-ratio: 16 / 10.4 !important;
}

body[data-page="home"] .home-news-feature__media img,
body[data-page="home"] .home-news-card__media img,
body[data-page="news"] .news-card__media img,
body[data-page="news"] .feature-story--news .news-card__media--feature img,
body[data-page="learn"] .learning-card__media img,
body[data-page="home"] .preview-grid--learning-home .preview-card__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

body[data-page="home"] .home-news-feature__body h3,
body[data-page="news"] .feature-story__body h3 {
  margin: 0 !important;
  font-size: clamp(1.46rem, 2vw, 1.95rem) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.045em !important;
  text-wrap: balance !important;
}

body[data-page="home"] .home-news-card__body h3,
body[data-page="news"] .news-card__body h3,
body[data-page="learn"] .learning-card h3,
body[data-page="home"] .preview-grid--learning-home .preview-card h3 {
  margin: 0 !important;
  font-size: 1.05rem !important;
  line-height: 1.14 !important;
  letter-spacing: -0.03em !important;
  text-wrap: balance !important;
}

body[data-page="home"] .home-news-feature__body > p,
body[data-page="news"] .feature-story__body > p {
  margin: 0 !important;
  font-size: 0.95rem !important;
  line-height: 1.52 !important;
}

body[data-page="home"] .home-news-card__body > p,
body[data-page="news"] .news-card__body > p,
body[data-page="learn"] .learning-card > p,
body[data-page="home"] .preview-grid--learning-home .preview-card > p,
body[data-page="home"] .home-news-card__why,
body[data-page="news"] .news-card__why {
  margin: 0 !important;
  font-size: 0.89rem !important;
  line-height: 1.48 !important;
}

body[data-page="home"] .home-news-card__why,
body[data-page="news"] .news-card__why {
  color: var(--muted) !important;
}

body[data-page="news"] .feature-story__body .detail-block,
body[data-page="learn"] .learning-card .detail-block,
body[data-page="home"] .preview-grid--learning-home .detail-block {
  margin: 0 !important;
  padding-top: 10px !important;
}

body[data-page="home"] .home-news-card__body .text-link--inline,
body[data-page="news"] .news-card__body .text-link--inline,
body[data-page="news"] .feature-story__body .text-link--inline,
body[data-page="learn"] .learning-card__footer,
body[data-page="home"] .preview-card__actions {
  margin-top: auto !important;
}

body[data-page="home"] .list-card__meta,
body[data-page="news"] .list-card__meta,
body[data-page="learn"] .preview-card__list,
body[data-page="home"] .preview-card__list,
.source-identity,
.source-identity--compact,
.tag-row {
  gap: 6px 8px !important;
}

body[data-page="home"] .list-card__meta span,
body[data-page="news"] .list-card__meta span,
body[data-page="learn"] .preview-card__list span,
body[data-page="home"] .preview-card__list span,
.tag {
  padding: 6px 10px !important;
  font-size: 0.76rem !important;
}

.source-identity,
.source-identity--compact {
  max-width: 100% !important;
}

.source-identity__label {
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

body[data-page="home"] .news-status,
body[data-page="news"] .news-status {
  width: min(1120px, 100%) !important;
  margin-inline: auto !important;
}

body[data-page="news"] .news-layout,
body[data-page="learn"] .learning-grid,
body[data-page="home"] .preview-grid--learning-home,
body[data-page="home"] .home-news-list {
  align-items: start !important;
}

@media (max-width: 1180px) {
  body[data-page="home"] .home-news-list,
  body[data-page="home"] .preview-grid--learning-home,
  body[data-page="news"] .news-stack,
  body[data-page="learn"] .learning-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body[data-page="home"] .home-news-feature-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 820px) {
  .topbar {
    width: calc(100vw - 18px) !important;
    min-height: 48px !important;
    padding: 7px 10px 8px 16px !important;
    gap: 8px !important;
    border-radius: 24px !important;
  }

  .brand-lockup {
    width: 176px !important;
    padding-left: 8px !important;
  }

  .brand-lockup__logo {
    height: 38px !important;
    max-height: 38px !important;
    transform: translateY(3px);
  }

  .topbar__menu-button {
    width: 36px !important;
    min-width: 36px !important;
    height: 36px !important;
  }

  .mobile-menu {
    top: calc(18px + env(safe-area-inset-top, 0px)) !important;
    border-radius: 24px !important;
  }

  body[data-page="home"] .hero__content--launch {
    gap: 6px !important;
    max-width: 100% !important;
  }

  body[data-page="home"] .hero__content--launch h1 {
    max-width: 11.4ch !important;
    font-size: clamp(1.92rem, 8vw, 2.7rem) !important;
    line-height: 0.96 !important;
    text-align: center !important;
  }

  body[data-page="home"] .hero__lede {
    max-width: 18rem !important;
    font-size: 0.92rem !important;
  }

  body[data-page="home"] .hero-search {
    width: 100% !important;
    grid-template-columns: minmax(0, 1fr) 108px !important;
    gap: 8px !important;
  }

  body[data-page="home"] .hero-search input {
    min-height: 44px !important;
    padding: 0 14px !important;
    border-radius: 14px !important;
    background: color-mix(in srgb, var(--surface-strong) 90%, transparent) !important;
  }

  body[data-page="home"] .hero-search button {
    min-height: 44px !important;
    min-width: 108px !important;
  }

  body[data-page="home"] .home-news-feature-grid,
  body[data-page="home"] .home-news-list,
  body[data-page="home"] .preview-grid--learning-home,
  body[data-page="news"] .news-stack,
  body[data-page="learn"] .learning-grid,
  body[data-page="news"] .news-layout {
    grid-template-columns: 1fr !important;
  }

  body[data-page="news"] .feature-story--news {
    grid-template-columns: 1fr !important;
  }

  body[data-page="home"] .home-news-feature,
  body[data-page="home"] .home-news-card,
  body[data-page="news"] .news-card,
  body[data-page="learn"] .learning-card,
  body[data-page="home"] .preview-grid--learning-home .preview-card,
  body[data-page="news"] .feature-story--news {
    padding: 14px !important;
    border-radius: 20px !important;
    gap: 10px !important;
  }

  body[data-page="home"] .home-news-feature__media,
  body[data-page="home"] .home-news-card__media,
  body[data-page="news"] .news-card__media,
  body[data-page="news"] .feature-story--news .news-card__media--feature,
  body[data-page="learn"] .learning-card__media,
  body[data-page="home"] .preview-grid--learning-home .preview-card__media {
    min-height: 186px !important;
    aspect-ratio: 16 / 10 !important;
  }
}

/* Final launch stabilization pass */

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

html[data-theme="dark"],
html[data-theme="dark"] body,
html[data-theme="dark"] .site-shell,
html[data-theme="dark"] main {
  background: #000000 !important;
  color-scheme: dark !important;
}

html[data-theme="light"],
html[data-theme="light"] body,
html[data-theme="light"] .site-shell,
html[data-theme="light"] main {
  background: #ffffff !important;
  color-scheme: light !important;
}

body[data-page="home"] main,
body[data-page="news"] main,
body[data-page="learn"] main {
  gap: 12px !important;
}

body[data-page="home"] .hero {
  padding-top: 0 !important;
}

body[data-page="home"] .hero__frame--launch {
  max-width: 1100px !important;
  gap: 8px !important;
}

body[data-page="home"] .hero__content--launch h1 {
  max-width: 12.6ch !important;
  font-size: clamp(2.18rem, 3.95vw, 3.55rem) !important;
  line-height: 0.93 !important;
}

body[data-page="home"] .hero__lede {
  max-width: 28rem !important;
  margin-top: 2px !important;
}

.hero-nowrap {
  white-space: nowrap !important;
}

body[data-page="home"] .hero-search {
  margin-top: 6px !important;
}

body[data-page="home"] .hero__chips {
  margin-top: 6px !important;
}

body[data-page="home"] .hero-divider {
  margin-top: 8px !important;
}

body[data-page="home"] .section,
body[data-page="news"] .hub,
body[data-page="learn"] .hub {
  padding-top: 0 !important;
}

.home-news-grid--hero,
.home-news-feature-grid,
.home-news-list,
.preview-grid--learning-home,
.news-layout,
.news-stack,
.learning-grid {
  align-items: start !important;
}

.home-news-feature-grid,
.home-news-list,
.preview-grid--learning-home,
.news-stack,
.learning-grid {
  gap: 14px !important;
}

.home-news-feature,
.home-news-card,
.feature-story,
.news-card,
.learning-card,
.preview-grid--learning-home .preview-card {
  min-width: 0 !important;
  max-width: 100% !important;
}

.home-news-card__body,
.home-news-feature__body,
.feature-story__body,
.news-card__body,
.learning-card,
.preview-grid--learning-home .preview-card,
.preview-card__head,
.preview-card__list,
.learning-card__footer,
.source-identity {
  min-width: 0 !important;
}

.home-news-feature__body h3,
.home-news-card__body h3,
.feature-story__body h3,
.news-card__body h3,
.learning-card h3,
.preview-grid--learning-home .preview-card h3 {
  text-wrap: balance !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}

.home-news-feature__body > p,
.home-news-card__body > p,
.feature-story__body > p,
.news-card__body > p,
.learning-card > p,
.home-news-card__why,
.news-card__why,
.detail-block p {
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

.text-link--inline {
  margin-top: auto !important;
}

.page-loader {
  background: #000000 !important;
  backdrop-filter: blur(10px) !important;
}

.page-loader__card {
  min-width: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  gap: 18px !important;
}

.page-loader__brand {
  width: min(220px, 62vw) !important;
}

.page-loader__logo {
  max-height: 112px !important;
  object-fit: contain !important;
}

.page-loader__label {
  color: rgba(244, 247, 251, 0.82) !important;
  font-size: 0.96rem !important;
}

body.splash-page .entry-card {
  left: 50% !important;
  right: auto !important;
  top: auto !important;
  bottom: max(18px, env(safe-area-inset-bottom, 0px)) !important;
  transform: translateX(-50%) !important;
  width: min(500px, calc(100vw - 48px)) !important;
  max-height: min(40vh, 330px) !important;
}

@media (min-width: 981px) {
  .topbar {
    grid-template-columns: minmax(132px, 0.94fr) minmax(0, 1.6fr) auto !important;
    gap: 14px !important;
    padding: 10px 18px 10px 22px !important;
    align-items: center !important;
  }

  .brand-lockup {
    width: 128px !important;
    margin-left: 8px !important;
  }

  .brand-lockup__logo {
    max-height: 48px !important;
  }

  .topnav {
    justify-self: center !important;
    justify-content: center !important;
    gap: 4px !important;
    min-width: 0 !important;
  }

  .topnav a {
    min-height: 34px !important;
    padding: 8px 10px !important;
    font-size: 0.76rem !important;
    letter-spacing: 0.08em !important;
  }

  .topnav a:first-child {
    margin-left: 6px !important;
  }

  .topbar__actions {
    gap: 8px !important;
    min-width: 0 !important;
    flex-wrap: nowrap !important;
  }

  .region-pill {
    min-width: 0 !important;
    max-width: 290px !important;
    padding: 5px 8px !important;
  }

  .region-pill__badge,
  .region-pill__meta-pill {
    max-width: 136px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    padding: 6px 10px !important;
  }
}

@media (max-width: 820px) {
  html,
  body {
    overflow-x: hidden !important;
  }

  .site-shell {
    overflow-x: clip !important;
  }

  .topbar {
    width: calc(100vw - 16px) !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    grid-template-areas: "brand actions" !important;
    gap: 8px 10px !important;
    min-height: 58px !important;
    padding: 10px 14px 11px !important;
    margin-top: 8px !important;
    border-radius: 24px !important;
  }

  .brand-lockup {
    grid-area: brand !important;
    width: 132px !important;
    margin-left: 6px !important;
    align-self: center !important;
  }

  .brand-lockup__logo {
    max-height: 42px !important;
    transform: translateY(4px) !important;
  }

  .topnav {
    display: none !important;
  }

  .topbar__actions {
    grid-area: actions !important;
    width: auto !important;
    justify-self: end !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .topbar__actions > .region-pill,
  .topbar__actions > .theme-toggle {
    display: none !important;
  }

  .topbar__menu-button {
    display: inline-flex !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 18px !important;
    align-self: center !important;
  }

  .mobile-menu {
    left: 8px !important;
    right: 8px !important;
    top: 74px !important;
    width: auto !important;
    padding: 16px !important;
    border-radius: 24px !important;
    background: color-mix(in srgb, var(--bg) 96%, var(--surface)) !important;
    border: 1px solid var(--line) !important;
  }

  .mobile-menu__header {
    align-items: center !important;
  }

  .mobile-menu__close {
    width: 40px !important;
    height: 40px !important;
    border-radius: 16px !important;
  }

  .mobile-menu__links,
  .mobile-menu__footer {
    gap: 10px !important;
  }

  .mobile-menu__links a {
    padding: 12px 14px !important;
    border-radius: 16px !important;
    font-size: 0.95rem !important;
  }

  .mobile-menu__theme .theme-toggle__button {
    min-height: 40px !important;
  }

  body[data-page="home"] .hero__content--launch {
    justify-items: center !important;
    text-align: center !important;
    gap: 6px !important;
  }

  body[data-page="home"] .hero__content--launch h1 {
    max-width: 11.2ch !important;
    font-size: clamp(1.72rem, 7.2vw, 2.28rem) !important;
    line-height: 0.95 !important;
    letter-spacing: -0.05em !important;
  }

  body[data-page="home"] .hero__lede {
    max-width: 20rem !important;
    margin-top: 2px !important;
    text-align: center !important;
  }

  body[data-page="home"] .hero-search {
    width: min(100%, 420px) !important;
    grid-template-columns: minmax(0, 1fr) 98px !important;
    gap: 6px !important;
    padding: 6px !important;
    margin-top: 8px !important;
    border-radius: 18px !important;
  }

  body[data-page="home"] .hero-search input {
    min-height: 46px !important;
    padding: 12px 14px !important;
    border-radius: 14px !important;
    background: color-mix(in srgb, var(--surface-strong) 94%, transparent) !important;
  }

  body[data-page="home"] .hero-search button {
    width: 100% !important;
    min-height: 46px !important;
    padding: 0 10px !important;
    border-radius: 14px !important;
  }

  html[data-theme="light"] body[data-page="home"] .hero-search input {
    background: #f4f7fb !important;
  }

  body[data-page="home"] .hero__chips {
    width: 100% !important;
    justify-content: flex-start !important;
  }

  .home-news-grid--hero,
  .home-news-feature-grid,
  .home-news-list,
  .preview-grid--learning-home,
  .news-layout,
  .news-stack,
  .learning-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .preview-card,
  .preview-card--feature,
  .preview-card--tall,
  .preview-card--wide,
  .preview-card--compact,
  .home-news-feature,
  .home-news-card,
  .feature-story,
  .news-card,
  .learning-card {
    grid-column: auto !important;
    grid-row: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .home-news-feature,
  .home-news-card,
  .feature-story--news,
  .news-card {
    grid-template-columns: 1fr !important;
  }

  .home-news-feature__media,
  .home-news-card__media,
  .news-card__media,
  .preview-card__media,
  .learning-card__media {
    min-height: 172px !important;
    aspect-ratio: 16 / 10 !important;
  }

  .home-news-feature__body,
  .home-news-card__body,
  .feature-story__body,
  .news-card__body,
  .preview-grid--learning-home .preview-card,
  .learning-card {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .home-news-feature__body h3,
  .home-news-card__body h3,
  .feature-story__body h3,
  .news-card__body h3,
  .preview-grid--learning-home .preview-card h3,
  .learning-card h3 {
    font-size: 1.02rem !important;
    line-height: 1.12 !important;
    text-wrap: balance !important;
  }

  .home-news-feature__body > p,
  .home-news-card__body > p,
  .feature-story__body > p,
  .news-card__body > p,
  .preview-grid--learning-home .preview-card > p,
  .learning-card > p,
  .home-news-card__why,
  .news-card__why {
    font-size: 0.89rem !important;
    line-height: 1.45 !important;
  }

  .preview-card__head,
  .list-card__meta,
  .learning-card__footer,
  .tag-row {
    flex-wrap: wrap !important;
  }

  body.splash-page .entry-card {
    top: auto !important;
    bottom: max(12px, env(safe-area-inset-bottom, 0px)) !important;
    width: min(92vw, 400px) !important;
    max-height: min(48vh, 410px) !important;
    transform: translateX(-50%) !important;
  }

  .page-loader__brand {
    width: min(184px, 70vw) !important;
  }
}

@media (max-width: 420px) {
  .brand-lockup {
    width: 138px !important;
  }

  .brand-lockup__logo {
    max-height: 44px !important;
  }

  body[data-page="home"] .hero__content--launch h1 {
    max-width: 10.8ch !important;
    font-size: clamp(1.62rem, 7.4vw, 2.04rem) !important;
  }

  body[data-page="home"] .hero-search {
    grid-template-columns: minmax(0, 1fr) 92px !important;
  }
}

/* Compartment restore pass */

body[data-page="home"] .home-news-feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

body[data-page="home"] .home-news-list,
body[data-page="home"] .preview-grid--learning-home,
body[data-page="news"] .news-stack,
body[data-page="learn"] .learning-grid {
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)) !important;
  gap: 14px !important;
}

body[data-page="home"] .home-news-feature,
body[data-page="home"] .home-news-card,
body[data-page="home"] .preview-grid--learning-home .preview-card,
body[data-page="news"] .feature-story,
body[data-page="news"] .news-card,
body[data-page="learn"] .learning-card {
  padding: 18px !important;
  gap: 10px !important;
  border-radius: 22px !important;
}

body[data-page="home"] .home-news-feature__media,
body[data-page="home"] .home-news-card__media,
body[data-page="news"] .news-card__media,
body[data-page="home"] .preview-grid--learning-home .preview-card__media,
body[data-page="learn"] .learning-card__media {
  min-height: 168px !important;
  aspect-ratio: 16 / 10 !important;
  border-radius: 18px !important;
}

body[data-page="home"] .home-news-feature__body h3,
body[data-page="home"] .home-news-card__body h3,
body[data-page="news"] .feature-story__body h3,
body[data-page="news"] .news-card__body h3,
body[data-page="home"] .preview-grid--learning-home .preview-card h3,
body[data-page="learn"] .learning-card h3 {
  font-size: 1.08rem !important;
  line-height: 1.12 !important;
}

body[data-page="home"] .home-news-feature__body > p,
body[data-page="home"] .home-news-card__body > p,
body[data-page="news"] .feature-story__body > p,
body[data-page="news"] .news-card__body > p,
body[data-page="home"] .preview-grid--learning-home .preview-card > p,
body[data-page="learn"] .learning-card > p,
body[data-page="home"] .home-news-card__why,
body[data-page="news"] .news-card__why {
  font-size: 0.9rem !important;
  line-height: 1.46 !important;
}

@media (min-width: 981px) {
  .topbar {
    grid-template-columns: minmax(136px, auto) minmax(0, 1fr) auto !important;
    gap: 14px !important;
    padding: 10px 18px 10px 24px !important;
  }

  .brand-lockup {
    width: 132px !important;
    margin-left: 10px !important;
  }

  .brand-lockup__logo {
    max-height: 48px !important;
  }

  .topnav {
    gap: 4px !important;
  }

  .topnav a {
    min-height: 34px !important;
    padding: 8px 9px !important;
    font-size: 0.74rem !important;
    letter-spacing: 0.075em !important;
  }

  .topnav a:first-child {
    margin-left: 8px !important;
  }

  .topbar__actions {
    justify-self: end !important;
    margin-left: 14px !important;
    gap: 6px !important;
  }

  .region-pill {
    min-height: 30px !important;
    max-width: 252px !important;
    padding: 4px 7px !important;
    gap: 5px !important;
  }

  .region-pill__badge,
  .region-pill__meta-pill {
    padding: 5px 9px !important;
    font-size: 0.74rem !important;
  }
}

@media (max-width: 820px) {
  body[data-page="home"] .home-news-feature-grid,
  body[data-page="home"] .home-news-list,
  body[data-page="home"] .preview-grid--learning-home,
  body[data-page="news"] .news-stack,
  body[data-page="learn"] .learning-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Final Home / News / Learning density pass */

body[data-page="home"] main,
body[data-page="news"] main,
body[data-page="learn"] main {
  gap: 10px !important;
}

body[data-page="home"] .section,
body[data-page="news"] .hub,
body[data-page="learn"] .hub {
  padding-top: 12px !important;
}

body[data-page="home"] .section-heading,
body[data-page="news"] .section-heading,
body[data-page="learn"] .section-heading {
  margin-bottom: 8px !important;
}

body[data-page="home"] .section-heading h2,
body[data-page="news"] .section-heading h2,
body[data-page="learn"] .section-heading h2 {
  font-size: clamp(1.55rem, 2.3vw, 2.15rem) !important;
  line-height: 1.02 !important;
}

body[data-page="home"] .section-heading p,
body[data-page="news"] .section-heading p,
body[data-page="learn"] .section-heading p {
  max-width: 42rem !important;
  margin-top: 4px !important;
}

body[data-page="home"] .home-news-grid--hero,
body[data-page="home"] .home-news-feature-grid,
body[data-page="home"] .home-news-list,
body[data-page="home"] .preview-grid--learning-home,
body[data-page="news"] .news-layout,
body[data-page="news"] .news-stack,
body[data-page="learn"] .learning-grid {
  width: min(1120px, 100%) !important;
  margin-inline: auto !important;
  align-items: start !important;
}

body[data-page="home"] .home-news-feature-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

body[data-page="home"] .home-news-list,
body[data-page="home"] .preview-grid--learning-home,
body[data-page="news"] .news-stack,
body[data-page="learn"] .learning-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
  gap: 12px !important;
}

body[data-page="home"] .home-news-feature,
body[data-page="home"] .home-news-card,
body[data-page="news"] .news-card,
body[data-page="learn"] .learning-card,
body[data-page="home"] .preview-grid--learning-home .preview-card {
  display: flex !important;
  flex-direction: column !important;
  min-height: 0 !important;
  height: 100% !important;
  gap: 8px !important;
}

body[data-page="news"] .feature-story--news {
  display: grid !important;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr) !important;
  gap: 14px !important;
  align-items: start !important;
}

body[data-page="home"] .home-news-feature__media,
body[data-page="home"] .home-news-card__media,
body[data-page="news"] .news-card__media,
body[data-page="learn"] .learning-card__media,
body[data-page="home"] .preview-card__media {
  min-height: 148px !important;
  aspect-ratio: 16 / 9.2 !important;
}

body[data-page="news"] .news-card__media--feature,
body[data-page="home"] .home-news-feature__media {
  min-height: 190px !important;
}

body[data-page="home"] .home-news-card__body,
body[data-page="news"] .news-card__body,
body[data-page="news"] .feature-story__body,
body[data-page="learn"] .learning-card,
body[data-page="home"] .preview-grid--learning-home .preview-card {
  display: flex !important;
  flex-direction: column !important;
  min-width: 0 !important;
  height: 100% !important;
  gap: 7px !important;
}

body[data-page="home"] .home-news-card__body h3,
body[data-page="news"] .news-card__body h3,
body[data-page="learn"] .learning-card h3,
body[data-page="home"] .preview-grid--learning-home .preview-card h3 {
  font-size: 1.02rem !important;
  line-height: 1.12 !important;
  text-wrap: pretty !important;
}

body[data-page="news"] .feature-story__body h3,
body[data-page="home"] .home-news-feature__body h3 {
  font-size: clamp(1.5rem, 2.1vw, 2.1rem) !important;
  line-height: 1.03 !important;
}

body[data-page="home"] .home-news-card__body > p,
body[data-page="news"] .news-card__body > p,
body[data-page="learn"] .learning-card > p,
body[data-page="home"] .preview-grid--learning-home .preview-card > p {
  font-size: 0.9rem !important;
  line-height: 1.48 !important;
  margin: 0 !important;
}

body[data-page="home"] .home-news-card__why,
body[data-page="news"] .news-card__why {
  margin: 0 !important;
  font-size: 0.89rem !important;
  line-height: 1.46 !important;
}

body[data-page="home"] .home-news-card__body > p,
body[data-page="news"] .news-card__body > p,
body[data-page="learn"] .learning-card > p,
body[data-page="home"] .preview-grid--learning-home .preview-card > p,
body[data-page="home"] .home-news-card__why,
body[data-page="news"] .news-card__why {
  overflow: visible !important;
  -webkit-line-clamp: unset !important;
}

body[data-page="news"] .feature-story__body .detail-block,
body[data-page="learn"] .learning-card .detail-block,
body[data-page="home"] .preview-grid--learning-home .detail-block {
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  gap: 3px !important;
}

body[data-page="news"] .feature-story__body .detail-block h4,
body[data-page="learn"] .learning-card .detail-block h4,
body[data-page="home"] .preview-grid--learning-home .detail-block h4 {
  margin: 0 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

body[data-page="home"] .home-news-card__body .text-link--inline,
body[data-page="news"] .news-card__body .text-link--inline,
body[data-page="news"] .feature-story__body .text-link--inline,
body[data-page="learn"] .learning-card__footer,
body[data-page="home"] .preview-card__actions {
  margin-top: auto !important;
}

body[data-page="home"] .coming-soon-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

@media (max-width: 1120px) {
  body[data-page="home"] .home-news-feature-grid {
    grid-template-columns: 1fr !important;
  }

  body[data-page="home"] .coming-soon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 820px) {
  body[data-page="home"] .hero__content--launch {
    max-width: 100% !important;
  }

  body[data-page="home"] .hero__content--launch h1,
  body[data-page="home"] .hero__content--launch .hero__lede,
  body[data-page="home"] .hero__content--launch .eyebrow {
    width: min(100%, 20rem) !important;
    margin-inline: auto !important;
    text-align: center !important;
  }

  body[data-page="home"] .home-news-list,
  body[data-page="home"] .preview-grid--learning-home,
  body[data-page="news"] .news-layout,
  body[data-page="news"] .news-stack,
  body[data-page="learn"] .learning-grid,
  body[data-page="home"] .coming-soon-grid {
    grid-template-columns: 1fr !important;
  }

  body[data-page="news"] .feature-story--news {
    grid-template-columns: 1fr !important;
  }

  body[data-page="home"] .home-news-feature__media,
  body[data-page="home"] .home-news-card__media,
  body[data-page="news"] .news-card__media,
  body[data-page="learn"] .learning-card__media,
  body[data-page="home"] .preview-card__media,
  body[data-page="news"] .news-card__media--feature {
    min-height: 176px !important;
    aspect-ratio: 16 / 10 !important;
  }
}

@media (max-width: 640px) {
  body[data-page="home"] main,
  body[data-page="news"] main,
  body[data-page="learn"] main {
    gap: 8px !important;
  }

  body[data-page="home"] .section,
  body[data-page="news"] .hub,
  body[data-page="learn"] .hub {
    padding-top: 10px !important;
  }

  body[data-page="home"] .hero__content--launch h1 {
    width: min(100%, 18rem) !important;
    max-width: 18rem !important;
    font-size: clamp(1.78rem, 7.5vw, 2.38rem) !important;
    line-height: 0.95 !important;
    text-align: center !important;
  }

  body[data-page="home"] .hero__lede {
    width: min(100%, 18.5rem) !important;
    max-width: 18.5rem !important;
  }

  body[data-page="home"] .home-news-feature,
  body[data-page="home"] .home-news-card,
  body[data-page="news"] .news-card,
  body[data-page="learn"] .learning-card,
  body[data-page="home"] .preview-grid--learning-home .preview-card {
    padding: 11px !important;
    border-radius: 18px !important;
  }

  body[data-page="home"] .home-news-feature__media,
  body[data-page="home"] .home-news-card__media,
  body[data-page="news"] .news-card__media,
  body[data-page="learn"] .learning-card__media,
  body[data-page="home"] .preview-card__media,
  body[data-page="news"] .news-card__media--feature {
    min-height: 164px !important;
  }
}

/* Final home hero alignment lock */

body[data-page="home"] .hero {
  padding-top: 6px !important;
  padding-bottom: 0 !important;
}

body[data-page="home"] .hero__frame--launch {
  max-width: 1140px !important;
  padding: 0 !important;
  gap: 10px !important;
}

body[data-page="home"] .hero__content--launch {
  max-width: 1080px !important;
  margin: 0 auto !important;
  display: grid !important;
  justify-items: center !important;
  align-content: start !important;
  gap: 6px !important;
  text-align: center !important;
}

body[data-page="home"] .hero__content--launch .eyebrow {
  margin: 0 !important;
}

body[data-page="home"] .hero__content--launch h1 {
  max-width: 13.2ch !important;
  margin: 0 auto !important;
  font-size: clamp(2.45rem, 4.25vw, 4.15rem) !important;
  line-height: 0.91 !important;
  letter-spacing: -0.055em !important;
  text-wrap: balance !important;
}

body[data-page="home"] .hero__lede {
  max-width: 32rem !important;
  margin: 2px auto 0 !important;
  font-size: 0.96rem !important;
  line-height: 1.38 !important;
  text-align: center !important;
}

body[data-page="home"] .hero-search {
  width: min(540px, 100%) !important;
  margin-top: 8px !important;
}

body[data-page="home"] .hero__chips {
  justify-content: center !important;
  margin-top: 8px !important;
}

body[data-page="home"] .hero-divider {
  width: min(1100px, 100%) !important;
  margin: 10px auto 0 !important;
}

body[data-page="home"] .home-news-grid--hero {
  width: min(1100px, 100%) !important;
  margin-top: 8px !important;
}

@media (max-width: 900px) {
  body[data-page="home"] .hero__content--launch h1 {
    max-width: 12.2ch !important;
    font-size: clamp(2.15rem, 7.6vw, 3.45rem) !important;
  }

  body[data-page="home"] .hero__lede {
    max-width: 28rem !important;
    font-size: 0.92rem !important;
  }
}

@media (max-width: 640px) {
  body[data-page="home"] .hero {
    padding-top: 4px !important;
  }

  body[data-page="home"] .hero__content--launch {
    gap: 5px !important;
  }

  body[data-page="home"] .hero__content--launch h1 {
    max-width: 10.8ch !important;
    font-size: clamp(1.9rem, 8.1vw, 2.65rem) !important;
    line-height: 0.93 !important;
  }

  body[data-page="home"] .hero__lede {
    max-width: 22rem !important;
    font-size: 0.88rem !important;
  }

  body[data-page="home"] .hero-search {
    margin-top: 8px !important;
  }

  body[data-page="home"] .hero-divider {
    margin-top: 8px !important;
  }

  body[data-page="home"] .home-news-grid--hero {
    margin-top: 6px !important;
  }
}

/* Final home hero dock */

body[data-page="home"] .hero {
  padding-top: 6px !important;
  padding-bottom: 0 !important;
}

body[data-page="home"] .hero__frame--launch {
  max-width: 1140px !important;
  padding: 0 !important;
  gap: 10px !important;
}

body[data-page="home"] .hero__content--launch {
  max-width: 1080px !important;
  margin: 0 auto !important;
  display: grid !important;
  justify-items: center !important;
  align-content: start !important;
  gap: 6px !important;
  text-align: center !important;
}

body[data-page="home"] .hero__content--launch .eyebrow {
  margin: 0 !important;
}

body[data-page="home"] .hero__content--launch h1 {
  max-width: 13.2ch !important;
  margin: 0 auto !important;
  font-size: clamp(2.45rem, 4.25vw, 4.15rem) !important;
  line-height: 0.91 !important;
  letter-spacing: -0.055em !important;
  text-wrap: balance !important;
}

body[data-page="home"] .hero__lede {
  max-width: 32rem !important;
  margin: 2px auto 0 !important;
  font-size: 0.96rem !important;
  line-height: 1.38 !important;
  text-align: center !important;
}

body[data-page="home"] .hero-search {
  width: min(540px, 100%) !important;
  margin-top: 8px !important;
}

body[data-page="home"] .hero__chips {
  justify-content: center !important;
  margin-top: 8px !important;
}

body[data-page="home"] .hero-divider {
  width: min(1100px, 100%) !important;
  margin: 10px auto 0 !important;
}

body[data-page="home"] .home-news-grid--hero {
  width: min(1100px, 100%) !important;
  margin-top: 8px !important;
}

@media (max-width: 900px) {
  body[data-page="home"] .hero__content--launch h1 {
    max-width: 12.2ch !important;
    font-size: clamp(2.15rem, 7.6vw, 3.45rem) !important;
  }

  body[data-page="home"] .hero__lede {
    max-width: 28rem !important;
    font-size: 0.92rem !important;
  }
}

@media (max-width: 640px) {
  body[data-page="home"] .hero {
    padding-top: 4px !important;
  }

  body[data-page="home"] .hero__content--launch {
    gap: 5px !important;
  }

  body[data-page="home"] .hero__content--launch h1 {
    max-width: 10.8ch !important;
    font-size: clamp(1.9rem, 8.1vw, 2.65rem) !important;
    line-height: 0.93 !important;
  }

  body[data-page="home"] .hero__lede {
    max-width: 22rem !important;
    font-size: 0.88rem !important;
  }

  body[data-page="home"] .hero-search {
    margin-top: 8px !important;
  }

  body[data-page="home"] .hero-divider {
    margin-top: 8px !important;
  }

  body[data-page="home"] .home-news-grid--hero {
    margin-top: 6px !important;
  }
}

/* Final home hero alignment */

body[data-page="home"] .hero {
  padding-top: 6px !important;
  padding-bottom: 0 !important;
}

body[data-page="home"] .hero__frame--launch {
  max-width: 1140px !important;
  padding: 0 !important;
  gap: 10px !important;
}

body[data-page="home"] .hero__content--launch {
  max-width: 1080px !important;
  margin: 0 auto !important;
  display: grid !important;
  justify-items: center !important;
  align-content: start !important;
  gap: 6px !important;
  text-align: center !important;
}

body[data-page="home"] .hero__content--launch .eyebrow {
  margin: 0 !important;
}

body[data-page="home"] .hero__content--launch h1 {
  max-width: 13.2ch !important;
  margin: 0 auto !important;
  font-size: clamp(2.45rem, 4.25vw, 4.15rem) !important;
  line-height: 0.91 !important;
  letter-spacing: -0.055em !important;
  text-wrap: balance !important;
}

body[data-page="home"] .hero__lede {
  max-width: 32rem !important;
  margin: 2px auto 0 !important;
  font-size: 0.96rem !important;
  line-height: 1.38 !important;
  text-align: center !important;
}

body[data-page="home"] .hero-search {
  width: min(540px, 100%) !important;
  margin-top: 8px !important;
}

body[data-page="home"] .hero__chips {
  justify-content: center !important;
  margin-top: 8px !important;
}

body[data-page="home"] .hero-divider {
  width: min(1100px, 100%) !important;
  margin: 10px auto 0 !important;
}

body[data-page="home"] .home-news-grid--hero {
  width: min(1100px, 100%) !important;
  margin-top: 8px !important;
}

@media (max-width: 900px) {
  body[data-page="home"] .hero__content--launch h1 {
    max-width: 12.2ch !important;
    font-size: clamp(2.15rem, 7.6vw, 3.45rem) !important;
  }

  body[data-page="home"] .hero__lede {
    max-width: 28rem !important;
    font-size: 0.92rem !important;
  }
}

@media (max-width: 640px) {
  body[data-page="home"] .hero {
    padding-top: 4px !important;
  }

  body[data-page="home"] .hero__content--launch {
    gap: 5px !important;
  }

  body[data-page="home"] .hero__content--launch h1 {
    max-width: 10.8ch !important;
    font-size: clamp(1.9rem, 8.1vw, 2.65rem) !important;
    line-height: 0.93 !important;
  }

  body[data-page="home"] .hero__lede {
    max-width: 22rem !important;
    font-size: 0.88rem !important;
  }

  body[data-page="home"] .hero-search {
    margin-top: 8px !important;
  }

  body[data-page="home"] .hero-divider {
    margin-top: 8px !important;
  }

  body[data-page="home"] .home-news-grid--hero {
    margin-top: 6px !important;
  }
}

/* Final coordinated production cleanup */

.topbar {
  width: min(1208px, calc(100vw - 34px)) !important;
  min-height: 60px !important;
  padding: 9px 16px 9px 24px !important;
  gap: 12px !important;
}

.brand-lockup {
  min-width: 176px !important;
  padding-left: 16px !important;
}

.brand-lockup__logo {
  height: 42px !important;
  max-height: 42px !important;
}

.topnav {
  gap: 2px !important;
}

.topnav a {
  min-width: 0 !important;
  padding: 8px 8px !important;
  font-size: 0.67rem !important;
  letter-spacing: 0.075em !important;
}

.topnav a:first-child {
  margin-left: 8px !important;
}

.topbar__actions {
  gap: 8px !important;
}

.region-pill {
  max-width: 242px;
  min-height: 36px !important;
  padding: 5px 8px !important;
}

.region-pill__badge,
.region-pill__meta-pill {
  min-height: 22px !important;
  padding: 0 8px !important;
  font-size: 0.7rem !important;
}

body[data-page="home"] .hero {
  padding-top: 10px !important;
  padding-bottom: 0 !important;
}

body[data-page="home"] .hero__frame--launch {
  padding: 2px 0 0 !important;
  gap: 12px !important;
}

body[data-page="home"] .hero__content--launch {
  gap: 8px !important;
}

body[data-page="home"] .hero__content--launch h1 {
  max-width: 10.2ch !important;
  font-size: clamp(3.05rem, 4.7vw, 5rem) !important;
  line-height: 0.93 !important;
}

.hero-nowrap {
  white-space: nowrap;
}

body[data-page="home"] .hero__lede {
  max-width: 38rem !important;
  margin-top: 0 !important;
  font-size: 0.98rem !important;
}

body[data-page="home"] .hero-search {
  margin-top: 10px !important;
  padding: 8px !important;
}

.hero__divider {
  margin: 6px auto 2px !important;
}

main,
body[data-page="home"] main {
  gap: 12px !important;
}

.section,
.hub {
  padding-top: 2px !important;
}

.home-news-feature-grid,
.home-news-list,
.preview-grid--learning-home,
.learning-grid,
.news-stack {
  gap: 12px !important;
}

.home-news-feature,
.home-news-card,
.news-card,
.learning-card,
.preview-grid--learning-home .preview-card,
.coming-soon-card,
.fun-surface {
  padding: 12px !important;
  gap: 8px !important;
  border-radius: 20px !important;
}

.home-news-feature__media,
.home-news-card__media,
.news-card__media,
.learning-card__media,
.preview-card__media {
  aspect-ratio: 16 / 9.2 !important;
  min-height: 150px !important;
}

.home-news-card__body h3,
.news-card__body h3,
.preview-grid--learning-home .preview-card h3,
.learning-card h3,
.feature-story__body h3 {
  font-size: 0.98rem !important;
}

.home-news-card__body > p,
.news-card__body > p,
.preview-grid--learning-home .preview-card > p,
.learning-card > p,
.home-news-card__why,
.news-card__why {
  font-size: 0.89rem !important;
}

.page-loader__brand {
  justify-content: center;
}

.page-loader__logo {
  height: 70px !important;
  max-height: 70px !important;
}

body.splash-page .entry-card {
  left: 50% !important;
  right: auto !important;
  top: min(calc(50% + 204px), calc(100svh - 308px)) !important;
  bottom: auto !important;
  transform: translateX(-50%) !important;
  width: min(398px, calc(100vw - 44px)) !important;
  max-height: 300px !important;
  padding: 15px !important;
  border-radius: 22px !important;
}

body.splash-page .splash-video {
  width: min(560px, calc(100vw - 180px)) !important;
  max-height: 34vh !important;
}

.joke-briefcase {
  min-height: 286px !important;
  gap: 10px !important;
}

.joke-briefcase__image,
.joke-reveal {
  grid-area: 1 / 1 !important;
}

.joke-briefcase__image {
  width: min(250px, 100%) !important;
}

.joke-briefcase__prompt {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.joke-briefcase.is-open .joke-briefcase__prompt {
  visibility: hidden;
}

.joke-reveal {
  opacity: 0 !important;
  transform: translateY(8px) scale(0.98) !important;
  pointer-events: none;
}

.joke-briefcase.is-open .joke-reveal {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

.joke-reveal h2 {
  max-width: 22ch;
}

@media (max-width: 1120px) {
  .topbar {
    width: calc(100vw - 24px) !important;
    grid-template-columns: minmax(164px, auto) minmax(0, 1fr) auto !important;
    padding: 8px 14px 8px 20px !important;
  }

  .brand-lockup {
    min-width: 164px !important;
    padding-left: 10px !important;
  }

  .brand-lockup__logo {
    height: 39px !important;
    max-height: 39px !important;
  }

  .topnav a {
    font-size: 0.63rem !important;
    padding: 8px 6px !important;
  }

  .region-pill {
    max-width: 212px;
  }
}

@media (max-width: 820px) {
  .topbar {
    min-height: 46px !important;
    padding: 6px 9px 8px 13px !important;
  }

  .brand-lockup {
    width: 170px !important;
    padding-left: 6px !important;
  }

  .brand-lockup__logo {
    height: 37px !important;
    max-height: 37px !important;
    transform: translateY(3px);
  }

  .topbar__menu-button {
    width: 34px !important;
    min-width: 34px !important;
    height: 34px !important;
  }

  body[data-page="home"] .hero {
    padding-top: 8px !important;
  }

  body[data-page="home"] .hero__content--launch h1 {
    font-size: clamp(2rem, 9.1vw, 3.25rem) !important;
    max-width: 10.8ch !important;
  }

  .mobile-menu {
    top: calc(14px + env(safe-area-inset-top, 0px)) !important;
    left: 12px !important;
    right: 12px !important;
    padding: 13px !important;
  }

  body.splash-page .entry-card {
    top: auto !important;
    bottom: 12px !important;
    transform: translateX(-50%) !important;
    max-height: calc(54svh - env(safe-area-inset-bottom, 0px)) !important;
  }
}

@media (max-width: 640px) {
  .topbar {
    min-height: 44px !important;
    padding: 6px 8px 8px 12px !important;
  }

  .brand-lockup {
    width: 168px !important;
  }

  .brand-lockup__logo {
    height: 36px !important;
    max-height: 36px !important;
  }

  body[data-page="home"] .hero-search {
    grid-template-columns: minmax(0, 1fr) 100px !important;
  }

  body[data-page="home"] .hero__content--launch h1 {
    font-size: clamp(1.84rem, 8.4vw, 2.55rem) !important;
    max-width: none !important;
  }

  body[data-page="home"] .hero__lede {
    font-size: 0.88rem !important;
  }

  body.splash-page .entry-card {
    width: calc(100vw - 14px) !important;
  }
}

/* Final full-device polish pass */

html[data-theme="dark"] body {
  background: #000000;
  color-scheme: dark;
}

html[data-theme="light"] body {
  background: #ffffff;
  color-scheme: light;
}

body.splash-page .splash-shell {
  background: #ffffff !important;
}

body.splash-page .splash-video {
  width: min(520px, calc(100vw - 140px)) !important;
  max-height: 36vh !important;
  border-radius: 26px !important;
  opacity: 1 !important;
  filter: none !important;
  box-shadow: none !important;
  background: #ffffff !important;
}

body.splash-page .entry-card {
  left: auto !important;
  right: 28px !important;
  top: auto !important;
  bottom: 28px !important;
  transform: none !important;
  width: min(392px, calc(100vw - 36px)) !important;
  max-height: min(72vh, 560px) !important;
  padding: 18px !important;
  border-radius: 24px !important;
  border: 1px solid rgba(15, 19, 24, 0.08) !important;
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.12) !important;
  backdrop-filter: blur(18px) !important;
}

body.splash-page .entry-card h2 {
  font-size: 1.32rem !important;
  line-height: 1.02 !important;
}

body.splash-page .entry-card p {
  font-size: 0.92rem !important;
}

body.splash-page .entry-choice-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
}

body.splash-page .entry-choice-grid--sector {
  grid-template-columns: 1fr 1fr !important;
}

.page-loader {
  background: #000000 !important;
}

.page-loader__logo {
  height: 72px !important;
  max-height: 72px !important;
}

.topbar {
  min-height: 60px !important;
}

.brand-lockup {
  padding-left: 18px !important;
}

.brand-lockup__logo {
  height: 42px !important;
  max-height: 42px !important;
}

.topnav {
  gap: 5px !important;
}

.topnav a {
  min-width: 74px !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.08em !important;
}

.region-pill,
.theme-toggle,
.ghost-button,
.mini-button,
.entry-choice,
.entry-back,
.workspace-picker__choice,
.workspace-picker__close,
.joke-trigger {
  backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 10px 24px rgba(0, 0, 0, 0.08);
}

.home-news-card,
.news-card,
.learning-card,
.preview-grid--learning-home .preview-card,
.coming-soon-card,
.fun-surface {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  min-width: 0 !important;
  gap: 8px !important;
  padding: 14px !important;
  border-radius: 22px !important;
}

.home-news-card__body,
.news-card__body,
.feature-story__body,
.preview-grid--learning-home .preview-card,
.learning-card,
.coming-soon-card,
.fun-surface__header,
.wisdom-card,
.joke-reveal {
  min-width: 0 !important;
  width: 100% !important;
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
}

.home-news-card__body *,
.news-card__body *,
.feature-story__body *,
.preview-grid--learning-home .preview-card *,
.learning-card *,
.coming-soon-card *,
.wisdom-card *,
.joke-reveal * {
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
}

.home-news-card__media,
.news-card__media,
.learning-card__media,
.preview-card__media,
.home-news-feature__media {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 164px !important;
  aspect-ratio: 16 / 9.8 !important;
  border-radius: 16px !important;
  overflow: hidden !important;
}

.home-news-card__media img,
.news-card__media img,
.learning-card__media img,
.preview-card__media img,
.home-news-feature__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

.home-news-card__body h3,
.news-card__body h3,
.preview-grid--learning-home .preview-card h3,
.learning-card h3,
.feature-story__body h3 {
  margin: 0 !important;
  line-height: 1.08 !important;
  text-wrap: balance !important;
}

.home-news-card__body > p,
.news-card__body > p,
.preview-grid--learning-home .preview-card > p,
.learning-card > p,
.home-news-card__why,
.news-card__why {
  margin: 0 !important;
  line-height: 1.48 !important;
  display: block !important;
  -webkit-line-clamp: unset !important;
  overflow: visible !important;
}

.source-identity,
.source-identity--compact,
.list-card__meta,
.preview-card__list,
.tag-row,
.button-row,
.learning-card__footer {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 6px 8px !important;
  width: 100% !important;
  min-width: 0 !important;
}

.source-identity__label {
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.feature-story--news {
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr) !important;
  gap: 16px !important;
  align-items: stretch !important;
}

.feature-story--news .news-card__media--feature {
  min-height: 100% !important;
  aspect-ratio: 16 / 12 !important;
}

.fun-page {
  max-width: 1040px !important;
}

.fun-surface {
  gap: 16px !important;
  padding: 18px !important;
}

.joke-briefcase {
  position: relative;
  display: grid !important;
  place-items: center !important;
  min-height: 320px;
  cursor: pointer;
}

.joke-briefcase__image,
.joke-reveal {
  grid-area: 1 / 1;
}

.joke-briefcase__image {
  width: min(320px, 100%);
  aspect-ratio: 16 / 12;
  border-radius: 22px !important;
  transition:
    opacity 0.42s var(--ease-premium),
    transform 0.42s var(--ease-premium),
    filter 0.42s var(--ease-premium);
}

.joke-reveal {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  min-height: 220px;
  padding: 24px 22px !important;
  opacity: 0.14;
  transform: translateY(10px) scale(0.985);
  pointer-events: none;
  transition:
    opacity 0.42s var(--ease-premium),
    transform 0.42s var(--ease-premium);
}

.joke-reveal h2,
.joke-reveal p,
.joke-reveal__eyebrow {
  max-width: 38ch;
  text-align: center;
}

.joke-reveal h2 {
  font-size: clamp(1.3rem, 2.1vw, 1.9rem) !important;
}

.joke-briefcase.is-opening .joke-briefcase__image {
  animation: briefcase-pop-away 0.72s var(--ease-premium);
}

.joke-briefcase.is-opening .joke-reveal {
  animation: reveal-card-rise 0.72s var(--ease-premium);
}

.joke-briefcase.is-open .joke-briefcase__image {
  opacity: 0;
  transform: scale(0.88) rotateY(-12deg);
  filter: blur(4px);
  pointer-events: none;
}

.joke-briefcase.is-open .joke-reveal {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes briefcase-pop-away {
  0% { opacity: 1; transform: scale(1) rotateY(0deg); }
  45% { opacity: 1; transform: scale(1.02) rotateY(0deg); }
  100% { opacity: 0; transform: scale(0.88) rotateY(-12deg); }
}

@keyframes reveal-card-rise {
  0% { opacity: 0; transform: translateY(16px) scale(0.97); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.wisdom-card {
  display: grid;
  gap: 12px;
  padding: 22px !important;
  border-radius: 22px;
  border: 1px solid color-mix(in srgb, var(--line) 88%, transparent);
  background: color-mix(in srgb, var(--surface-strong) 90%, transparent);
  transition:
    opacity 0.32s var(--ease-premium),
    transform 0.32s var(--ease-premium);
}

.wisdom-card.is-swapping {
  opacity: 0.22;
  transform: translateY(6px) scale(0.99);
}

.wisdom-card__eyebrow {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.wisdom-card__quote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.32rem, 2vw, 1.95rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.wisdom-card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}

.wisdom-card__author,
.wisdom-card__source {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 1120px) {
  .feature-story--news {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 820px) {
  .topbar {
    width: calc(100vw - 18px) !important;
    min-height: 48px !important;
    padding: 7px 10px 8px 15px !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 8px !important;
    border-radius: 24px !important;
  }

  .brand-lockup {
    width: 168px !important;
    min-width: 0 !important;
    padding-left: 8px !important;
  }

  .brand-lockup__logo {
    height: 36px !important;
    max-height: 36px !important;
    transform: translateY(2px);
  }

  .topbar__menu-button {
    width: 36px !important;
    min-width: 36px !important;
    height: 36px !important;
  }

  .mobile-menu {
    top: calc(16px + env(safe-area-inset-top, 0px)) !important;
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    padding: 14px !important;
    border-radius: 24px !important;
  }

  .mobile-menu__header {
    gap: 12px;
    align-items: center;
  }

  .mobile-menu__close {
    min-width: 36px;
    min-height: 36px;
  }

  .mobile-menu__links {
    display: grid;
    gap: 8px;
  }

  .mobile-menu__links a {
    padding: 12px 14px !important;
    border-radius: 16px !important;
  }

  .mobile-menu__footer {
    display: grid;
    gap: 10px;
  }

  .mobile-menu__theme {
    width: 100%;
  }

  .mobile-menu__theme .theme-toggle__button {
    min-height: 38px !important;
    flex: 1 1 0;
  }

  body[data-page="home"] .hero-search {
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 8px !important;
    padding: 8px !important;
  }

  body[data-page="home"] .hero-search input {
    min-height: 44px !important;
    background: color-mix(in srgb, var(--surface-strong) 88%, transparent) !important;
  }

  body[data-page="home"] .hero-search button {
    min-width: 112px !important;
    min-height: 44px !important;
    background: color-mix(in srgb, var(--accent-soft) 72%, var(--surface)) !important;
  }

  .home-news-list,
  .preview-grid--learning-home,
  .coming-soon-grid,
  .learning-grid,
  .news-stack,
  .news-layout {
    grid-template-columns: 1fr !important;
  }

  .home-news-card,
  .news-card,
  .learning-card,
  .preview-grid--learning-home .preview-card,
  .coming-soon-card,
  .fun-surface,
  .feature-story--news {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .home-news-card,
  .news-card {
    display: flex !important;
    flex-direction: column !important;
  }

  .home-news-card__media,
  .news-card__media,
  .preview-card__media,
  .learning-card__media,
  .home-news-feature__media {
    min-height: 170px !important;
    aspect-ratio: 16 / 10 !important;
  }

  .home-news-card__body,
  .news-card__body,
  .feature-story__body,
  .preview-grid--learning-home .preview-card,
  .learning-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .joke-briefcase {
    min-height: 280px;
  }

  .joke-briefcase__image {
    width: min(260px, 86%);
  }

  .joke-reveal {
    min-height: 200px;
    padding: 20px 18px !important;
  }

  .wisdom-card {
    padding: 18px !important;
  }

  body.splash-page .entry-card {
    right: 50% !important;
    bottom: 14px !important;
    width: min(92vw, 364px) !important;
    max-height: calc(56svh - env(safe-area-inset-bottom, 0px)) !important;
    transform: translateX(50%) !important;
    padding: 15px !important;
    border-radius: 20px !important;
  }

  body.splash-page .splash-video {
    width: min(94vw, 360px) !important;
    max-height: 30vh !important;
  }
}

@media (max-width: 640px) {
  .topbar {
    width: calc(100vw - 14px) !important;
    min-height: 46px !important;
    padding: 6px 8px 7px 13px !important;
  }

  .brand-lockup {
    width: 166px !important;
  }

  .brand-lockup__logo {
    height: 35px !important;
    max-height: 35px !important;
    transform: translateY(3px);
  }

  body[data-page="home"] .hero-search {
    grid-template-columns: minmax(0, 1fr) 104px !important;
  }

  .home-news-card,
  .news-card,
  .learning-card,
  .preview-grid--learning-home .preview-card,
  .coming-soon-card,
  .fun-surface {
    padding: 12px !important;
    gap: 8px !important;
    border-radius: 20px !important;
  }

  .home-news-card__body h3,
  .news-card__body h3,
  .preview-grid--learning-home .preview-card h3,
  .learning-card h3,
  .feature-story__body h3 {
    font-size: 0.98rem !important;
  }

  .home-news-card__body > p,
  .news-card__body > p,
  .preview-grid--learning-home .preview-card > p,
  .learning-card > p,
  .home-news-card__why,
  .news-card__why {
    font-size: 0.88rem !important;
  }

  .fun-actions {
    display: grid;
    gap: 10px;
  }

  .joke-trigger,
  #wisdom-trigger {
    width: 100%;
  }

  .joke-briefcase {
    min-height: 248px;
  }

  .joke-briefcase__image {
    width: min(228px, 88%);
  }

  .joke-reveal {
    min-height: 188px;
  }

  .wisdom-card__quote {
    font-size: 1.28rem;
  }

  body.splash-page .entry-card {
    width: calc(100vw - 14px) !important;
    max-height: calc(52svh - env(safe-area-inset-bottom, 0px)) !important;
    bottom: 10px !important;
    padding: 14px !important;
  }

  body.splash-page .entry-choice-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Final splash popup dock */

body.splash-page .entry-card {
  left: 50% !important;
  right: auto !important;
  top: auto !important;
  bottom: max(24px, env(safe-area-inset-bottom, 0px)) !important;
  transform: translateX(-50%) !important;
  width: min(520px, calc(100vw - 48px)) !important;
  max-height: min(42vh, 360px) !important;
  padding: 16px 18px !important;
  border-radius: 24px !important;
}

body.splash-page .entry-card__step {
  gap: 14px !important;
}

body.splash-page .entry-card p {
  max-width: none !important;
}

@media (max-width: 820px) {
  body.splash-page .entry-card {
    width: min(92vw, 392px) !important;
    bottom: max(14px, env(safe-area-inset-bottom, 0px)) !important;
    max-height: min(50vh, 420px) !important;
    padding: 14px 16px !important;
  }
}

@media (max-width: 640px) {
  body.splash-page .entry-card {
    width: calc(100vw - 16px) !important;
    bottom: max(10px, env(safe-area-inset-bottom, 0px)) !important;
    max-height: min(52vh, 430px) !important;
    padding: 14px !important;
  }
}

/* Final home hero alignment endcap */

body[data-page="home"] .hero {
  padding-top: 6px !important;
  padding-bottom: 0 !important;
}

body[data-page="home"] .hero__frame--launch {
  max-width: 1140px !important;
  padding: 0 !important;
  gap: 10px !important;
}

body[data-page="home"] .hero__content--launch {
  max-width: 1080px !important;
  margin: 0 auto !important;
  display: grid !important;
  justify-items: center !important;
  align-content: start !important;
  gap: 6px !important;
  text-align: center !important;
}

body[data-page="home"] .hero__content--launch .eyebrow {
  margin: 0 !important;
}

body[data-page="home"] .hero__content--launch h1 {
  max-width: 13.2ch !important;
  margin: 0 auto !important;
  font-size: clamp(2.45rem, 4.25vw, 4.15rem) !important;
  line-height: 0.91 !important;
  letter-spacing: -0.055em !important;
  text-wrap: balance !important;
}

body[data-page="home"] .hero__lede {
  max-width: 32rem !important;
  margin: 2px auto 0 !important;
  font-size: 0.96rem !important;
  line-height: 1.38 !important;
  text-align: center !important;
}

body[data-page="home"] .hero-search {
  width: min(540px, 100%) !important;
  margin-top: 8px !important;
}

body[data-page="home"] .hero__chips {
  justify-content: center !important;
  margin-top: 8px !important;
}

body[data-page="home"] .hero-divider {
  width: min(1100px, 100%) !important;
  margin: 10px auto 0 !important;
}

body[data-page="home"] .home-news-grid--hero {
  width: min(1100px, 100%) !important;
  margin-top: 8px !important;
}

@media (max-width: 900px) {
  body[data-page="home"] .hero__content--launch h1 {
    max-width: 12.2ch !important;
    font-size: clamp(2.15rem, 7.6vw, 3.45rem) !important;
  }

  body[data-page="home"] .hero__lede {
    max-width: 28rem !important;
    font-size: 0.92rem !important;
  }
}

@media (max-width: 640px) {
  body[data-page="home"] .hero {
    padding-top: 4px !important;
  }

  body[data-page="home"] .hero__content--launch {
    gap: 5px !important;
  }

  body[data-page="home"] .hero__content--launch h1 {
    max-width: 10.8ch !important;
    font-size: clamp(1.9rem, 8.1vw, 2.65rem) !important;
    line-height: 0.93 !important;
  }

  body[data-page="home"] .hero__lede {
    max-width: 22rem !important;
    font-size: 0.88rem !important;
  }

  body[data-page="home"] .hero-search {
    margin-top: 8px !important;
  }

  body[data-page="home"] .hero-divider {
    margin-top: 8px !important;
  }

  body[data-page="home"] .home-news-grid--hero {
    margin-top: 6px !important;
  }
}
