:root {
  --bg: #05060f;
  --panel: rgba(13, 27, 39, 0.84);
  --panel-strong: rgba(16, 34, 49, 0.94);
  --line: rgba(148, 163, 184, 0.22);
  --text: #f7fbff;
  --muted: #aebbd0;
  --soft: #7f8ea6;
  --blue: #14b8a6;
  --blue-2: #78e7ff;
  --chip: rgba(20, 184, 166, 0.2);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

body.light-theme {
  --bg: #f4f8fc;
  --panel: rgba(255, 255, 255, 0.88);
  --panel-strong: rgba(255, 255, 255, 0.96);
  --line: rgba(42, 63, 92, 0.18);
  --text: #0d1624;
  --muted: #53657a;
  --soft: #66788d;
  --chip: rgba(20, 184, 166, 0.12);
  --shadow: 0 18px 55px rgba(14, 42, 76, 0.12);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

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

body {
  position: relative;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(rgba(120, 231, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 231, 255, 0.032) 1px, transparent 1px),
    radial-gradient(circle at 74% 14%, rgba(20, 184, 166, 0.22), transparent 34%),
    radial-gradient(circle at 28% 7%, rgba(124, 92, 255, 0.14), transparent 30%),
    linear-gradient(180deg, #060814 0%, #05060f 42%, #07111d 100%);
  background-size: 54px 54px, 54px 54px, auto, auto, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

body.light-theme {
  background:
    linear-gradient(rgba(20, 184, 166, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 184, 166, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 76% 12%, rgba(20, 184, 166, 0.14), transparent 34%),
    radial-gradient(circle at 22% 4%, rgba(124, 92, 255, 0.1), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #edf4fb 46%, #f7fbff 100%);
  background-size: 54px 54px, 54px 54px, auto, auto, auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 28%, rgba(20, 184, 166, 0.1) 28.2%, transparent 28.6% 61%, rgba(120, 231, 255, 0.08) 61.2%, transparent 61.6%),
    linear-gradient(180deg, rgba(2, 8, 18, 0), rgba(2, 8, 18, 0.52));
}

body.light-theme::before {
  background:
    linear-gradient(115deg, transparent 0 28%, rgba(20, 184, 166, 0.08) 28.2%, transparent 28.6% 61%, rgba(20, 184, 166, 0.08) 61.2%, transparent 61.6%),
    linear-gradient(180deg, rgba(247, 251, 255, 0), rgba(247, 251, 255, 0.38));
}

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

button,
input,
select {
  font: inherit;
}

svg {
  display: block;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
  width: min(1148px, calc(100% - 48px));
  margin: 0 auto;
}

.content-page {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 44px 0 80px;
}

.content-brand {
  display: inline-flex;
  width: fit-content;
  white-space: nowrap;
  align-items: center;
  margin-bottom: 44px;
}

.content-brand img {
  width: 42px;
  height: 42px;
}

.content-page article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: clamp(30px, 5vw, 62px);
}

.page-kicker {
  margin: 0 0 14px;
  color: var(--blue-2);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

.content-page h1 {
  margin: 0 0 22px;
  max-width: 820px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
}

.content-page h2 {
  margin: 42px 0 12px;
  font-size: 26px;
  letter-spacing: 0;
}

.content-page p,
.content-page li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.82;
}

.content-page a:not(.brand) {
  color: var(--blue-2);
  font-weight: 700;
}

.article-page article {
  max-width: 880px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -6px 0 24px;
}

.article-meta span,
.editorial-trust-row span,
.related-posts span,
.related-posts a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(120, 231, 255, 0.08);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  padding: 0 12px;
}

.article-lead {
  color: var(--text) !important;
  max-width: 780px;
  font-size: 21px !important;
  line-height: 1.62 !important;
}

.article-hero-image {
  margin: 28px 0 30px;
}

.article-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(120, 231, 255, 0.28);
  border-radius: 10px;
  background: rgba(2, 8, 18, 0.48);
  box-shadow: 0 24px 70px rgba(2, 8, 23, 0.3);
}

.article-hero-image figcaption {
  margin-top: 10px;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.5;
}

.article-note {
  border: 1px solid rgba(120, 231, 255, 0.35);
  border-radius: 8px;
  background: rgba(20, 184, 166, 0.1);
  color: var(--muted);
  line-height: 1.7;
  margin: 34px 0;
  padding: 18px 20px;
}

.cms-figure {
  margin: 28px 0;
}

.cms-figure img {
  display: block;
  width: 100%;
  border: 1px solid rgba(120, 231, 255, 0.28);
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(2, 8, 23, 0.28);
}

.cms-cover {
  margin-top: 22px;
}

.related-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.related-posts span {
  background: transparent;
  color: var(--soft);
}

.source-list {
  padding-left: 20px;
}

.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 34px;
}

.share-actions a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(120, 231, 255, 0.4);
  border-radius: 8px;
  background: linear-gradient(135deg, #14b8a6, #0f766e);
  color: white !important;
  padding: 0 18px;
  box-shadow: 0 12px 28px rgba(20, 184, 166, 0.24);
}

.quick-news a {
  color: inherit;
}

.latest-posts {
  margin-top: 30px;
}

.latest-cms-section {
  margin-top: 34px;
}

.home-command-section,
.home-news-section,
.company-spotlight-section,
.trending-robotics-section,
.research-path-section {
  margin-top: 34px;
}

.home-command-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1.26fr);
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(120, 231, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(8, 17, 31, 0.96), rgba(8, 20, 36, 0.92)),
    linear-gradient(90deg, rgba(20, 184, 166, 0.12), rgba(124, 58, 237, 0.08));
  box-shadow: var(--shadow);
}

.home-command-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(120, 231, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(120, 231, 255, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
  pointer-events: none;
}

.home-command-lead,
.home-command-grid {
  position: relative;
  z-index: 1;
}

.home-command-lead {
  display: grid;
  align-content: center;
  gap: 12px;
}

.home-command-lead p,
.command-card span,
.news-card span,
.company-spotlight-grid span,
.trending-stack span,
.research-path-grid span {
  margin: 0;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.home-command-lead h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.home-command-lead > span {
  color: #c4cedc;
  line-height: 1.62;
}

.home-command-grid,
.home-news-grid,
.company-spotlight-grid,
.research-path-grid {
  display: grid;
  gap: 14px;
}

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

.command-card,
.news-card,
.company-spotlight-grid a,
.trending-stack a,
.research-path-grid a {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 11px;
  min-height: 168px;
  padding: 20px;
  border: 1px solid rgba(120, 231, 255, 0.18);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(18, 35, 60, 0.86), rgba(5, 11, 20, 0.96));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.command-card::before,
.news-card::before,
.company-spotlight-grid a::before,
.trending-stack a::before,
.research-path-grid a::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #2dd4bf, #78e7ff, #a78bfa, transparent);
  opacity: 0.86;
}

.command-card:hover,
.news-card:hover,
.company-spotlight-grid a:hover,
.trending-stack a:hover,
.research-path-grid a:hover {
  transform: translateY(-4px);
  border-color: rgba(120, 231, 255, 0.58);
  background: linear-gradient(145deg, rgba(21, 44, 74, 0.94), rgba(5, 11, 20, 0.98));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28), 0 0 34px rgba(56, 189, 248, 0.08);
}

.command-card-large,
.news-card-primary {
  grid-row: span 2;
  align-content: end;
  min-height: 350px;
  background:
    linear-gradient(180deg, rgba(5, 11, 20, 0.18), rgba(5, 11, 20, 0.9)),
    url("assets/original-visuals/humanoid-profile-blueprint.svg") center / cover,
    linear-gradient(145deg, rgba(18, 35, 60, 0.9), rgba(5, 11, 20, 0.98));
}

.news-card-primary {
  background:
    linear-gradient(180deg, rgba(5, 11, 20, 0.28), rgba(5, 11, 20, 0.92)),
    url("assets/original-visuals/robot-hand-interface.svg") center / cover,
    linear-gradient(145deg, rgba(18, 35, 60, 0.9), rgba(5, 11, 20, 0.98));
}

.command-card h3,
.news-card h3,
.company-spotlight-grid strong,
.trending-stack strong,
.research-path-grid strong {
  margin: 0;
  color: #eef6ff;
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.14;
}

.command-card p,
.news-card p,
.company-spotlight-grid small,
.research-path-grid small {
  margin: 0;
  color: #c4cedc;
  line-height: 1.55;
}

.home-news-grid {
  grid-template-columns: minmax(280px, 1.05fr) repeat(2, minmax(0, 0.95fr));
}

.company-spotlight-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.company-spotlight-grid a {
  min-height: 210px;
  align-content: start;
}

.company-spotlight-grid img {
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 1px solid rgba(120, 231, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.trending-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 14px;
}

.trending-stack {
  display: grid;
  gap: 12px;
}

.trending-stack a {
  min-height: 108px;
}

.trending-stack strong {
  font-size: 18px;
}

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

.research-path-grid a {
  min-height: 148px;
}

body.light-theme .home-command-section,
body.light-theme .command-card,
body.light-theme .news-card,
body.light-theme .company-spotlight-grid a,
body.light-theme .trending-stack a,
body.light-theme .research-path-grid a {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(235, 243, 252, 0.94));
}

body.light-theme .home-command-lead > span,
body.light-theme .command-card p,
body.light-theme .news-card p,
body.light-theme .company-spotlight-grid small,
body.light-theme .research-path-grid small {
  color: #43566c;
}

body.light-theme .command-card h3,
body.light-theme .news-card h3,
body.light-theme .company-spotlight-grid strong,
body.light-theme .trending-stack strong,
body.light-theme .research-path-grid strong {
  color: #102033;
}

.editorial-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -8px 0 20px;
}

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

.post-grid a {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(18, 35, 60, 0.9), rgba(7, 17, 31, 0.94));
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.post-card-image {
  display: block;
  width: calc(100% + 48px);
  height: 150px;
  object-fit: cover;
  margin: -24px -24px 18px;
  border-bottom: 1px solid var(--line);
}

.post-grid a::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #14b8a6, #78e7ff, transparent);
}

.post-grid a:hover {
  transform: translateY(-4px);
  border-color: rgba(120, 231, 255, 0.58);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.24);
}

.post-grid span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.post-grid h3 {
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1.16;
}

.post-grid p {
  margin: 0;
  color: #c4cedc;
  line-height: 1.58;
}

body.light-theme .post-grid a {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(235, 243, 252, 0.94));
}

body.light-theme .post-grid p {
  color: #43566c;
}

.brand-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 84% 22%, rgba(120, 231, 255, 0.2), transparent 30%),
    linear-gradient(145deg, rgba(18, 35, 60, 0.86), rgba(7, 17, 31, 0.94));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.brand-showcase-copy {
  padding: clamp(26px, 4vw, 42px);
}

.brand-showcase-copy p {
  margin: 0 0 12px;
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-showcase-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4.5vw, 50px);
  line-height: 1.04;
}

.brand-showcase-copy span {
  display: block;
  color: #c4cedc;
  line-height: 1.65;
}

.brand-showcase-media {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

.brand-showcase-media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.05);
}

.brand-showcase-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.48), transparent 42%),
    linear-gradient(180deg, transparent, rgba(7, 17, 31, 0.68));
}

.signal-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  gap: 4px;
  width: min(280px, calc(100% - 44px));
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 8px;
  background: rgba(7, 17, 31, 0.78);
  backdrop-filter: blur(16px);
}

.signal-card strong {
  font-size: 20px;
}

.signal-card span {
  color: var(--muted);
}

.logo-marquee-section {
  margin: 18px 0 34px;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 17, 31, 0.64);
}

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 120px;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}

.logo-track {
  display: flex;
  gap: 14px;
  width: max-content;
  padding: 16px;
  animation: logoScroll 34s linear infinite;
}

.logo-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  padding: 10px 16px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  color: #d9e8ff;
  background: rgba(255, 255, 255, 0.055);
  font-weight: 800;
}

.logo-track img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

@keyframes logoScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

body.light-theme .brand-showcase,
body.light-theme .logo-marquee {
  background:
    radial-gradient(circle at 84% 22%, rgba(120, 231, 255, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(235, 243, 252, 0.94));
}

body.light-theme .brand-showcase-copy span,
body.light-theme .logo-track span {
  color: #43566c;
}

body.light-theme .logo-track span {
  background: rgba(255, 255, 255, 0.68);
}

.robot-video-section {
  margin-top: 34px;
}

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

.video-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  background: linear-gradient(145deg, rgba(18, 35, 60, 0.9), rgba(7, 17, 31, 0.94));
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.video-card.has-embed {
  border-color: rgba(120, 231, 255, 0.32);
  cursor: pointer;
}

.video-card.has-embed:focus-visible {
  outline: 2px solid var(--blue-2);
  outline-offset: 3px;
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(120, 231, 255, 0.58);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.24);
}

.video-thumb {
  position: relative;
  overflow: hidden;
  height: 178px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 70% 30%, rgba(120, 231, 255, 0.42), transparent 28%),
    linear-gradient(145deg, rgba(20, 184, 166, 0.14), rgba(7, 17, 31, 0.96));
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 8, 18, 0.02), rgba(2, 8, 18, 0.58)),
    radial-gradient(circle at 70% 20%, rgba(120, 231, 255, 0.18), transparent 34%);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.02);
  transition: transform 220ms ease, filter 220ms ease;
}

.video-card:hover .video-thumb img {
  transform: scale(1.045);
  filter: saturate(1.15) contrast(1.05);
}

.video-thumb span {
  position: absolute;
  z-index: 1;
  left: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, #14b8a6, #0f766e);
  box-shadow: 0 12px 32px rgba(20, 184, 166, 0.36);
}

.video-thumb em {
  position: absolute;
  z-index: 1;
  right: 12px;
  bottom: 16px;
  max-width: calc(100% - 88px);
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(2, 8, 18, 0.62);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
  white-space: nowrap;
}

.video-card > div:last-child {
  padding: 20px;
}

.video-card small {
  color: var(--blue-2);
  font-weight: 900;
  text-transform: uppercase;
}

.video-card h3 {
  margin: 12px 0 0;
  font-size: 21px;
  line-height: 1.16;
}

.video-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.video-card-actions button,
.video-card-actions a,
.video-player-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 1px solid rgba(120, 231, 255, 0.26);
  border-radius: 7px;
  color: #eaf6ff;
  background: rgba(20, 184, 166, 0.12);
  cursor: pointer;
  font-weight: 900;
  padding: 0 12px;
}

.video-card-actions a,
.video-player-actions a:last-child {
  color: var(--blue-2);
  background: rgba(255, 255, 255, 0.04);
}

body.light-theme .video-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(235, 243, 252, 0.94));
}

body.light-theme .video-card h3 {
  color: #43566c;
}

.robot-database-section,
.robologai-index-section,
.company-database-section,
.guide-hub-section,
.compare-section,
.humanoid-files-section,
.source-notes-section,
.radar-section,
.glossary-section,
.sponsor-section,
.cms-posts-section {
  margin-top: 34px;
}

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

.index-grid a,
.guide-grid a,
.files-grid a {
  position: relative;
  overflow: hidden;
  min-height: 138px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(18, 35, 60, 0.88), rgba(7, 17, 31, 0.94));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.index-grid a::before,
.guide-grid a::before,
.files-grid a::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #14b8a6, #5eead4, transparent);
}

.index-grid strong,
.guide-grid strong,
.files-grid strong {
  display: block;
  margin-bottom: 10px;
  color: #eef6ff;
  font-size: 18px;
}

.index-grid span,
.guide-grid small,
.files-grid small {
  color: #c4cedc;
  line-height: 1.55;
}

.guide-grid span,
.files-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.database-panel {
  overflow: hidden;
  border: 1px solid rgba(120, 231, 255, 0.22);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(12, 21, 35, 0.96), rgba(5, 11, 20, 0.98));
  box-shadow: var(--shadow);
}

.database-insight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(148, 163, 184, 0.12);
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.database-insight-grid article {
  min-height: 92px;
  padding: 17px 18px;
  background: rgba(6, 15, 28, 0.94);
}

.database-insight-grid strong {
  display: block;
  margin-bottom: 7px;
  color: #eef6ff;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1;
}

.database-insight-grid span {
  color: #93a4bb;
  font-size: 13px;
  font-weight: 800;
}

.database-status {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  color: #c4cedc;
  line-height: 1.55;
}

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

.database-result-card {
  display: grid;
  gap: 12px;
  min-height: 218px;
  padding: 20px;
  border-right: 1px solid rgba(148, 163, 184, 0.12);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.database-result-card strong {
  color: #eef6ff;
  font-size: 19px;
}

.database-result-card p {
  margin: 0;
  color: #c4cedc;
  line-height: 1.5;
}

.database-result-card small {
  color: #7f8ea6;
  line-height: 1.45;
}

.database-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.database-tags span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border: 1px solid rgba(120, 231, 255, 0.28);
  border-radius: 999px;
  color: #bfdbfe;
  background: rgba(120, 231, 255, 0.1);
  font-size: 12px;
  font-weight: 850;
  padding: 0 9px;
}

.database-result-card a {
  align-self: end;
  color: var(--blue-2);
  font-weight: 850;
}

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

.robot-catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -4px 0 18px;
}

.robot-catalog-toolbar button {
  min-height: 36px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 6px;
  color: #d8e4f5;
  background: rgba(12, 21, 35, 0.72);
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  padding: 0 14px;
}

.robot-catalog-toolbar button.is-active {
  border-color: rgba(120, 231, 255, 0.5);
  background: rgba(120, 231, 255, 0.18);
}

.robot-database-grid article,
.glossary-grid article,
.radar-list article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(18, 35, 60, 0.9), rgba(7, 17, 31, 0.94));
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.robot-database-grid article {
  min-height: 360px;
  padding: 22px;
}

.robot-database-grid article::before,
.glossary-grid article::before,
.radar-list article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #14b8a6, #78e7ff, transparent);
}

.robot-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border: 1px solid rgba(120, 231, 255, 0.3);
  border-radius: 12px;
  color: #d9e8ff;
  background:
    radial-gradient(circle at 65% 22%, rgba(120, 231, 255, 0.34), transparent 34%),
    rgba(255, 255, 255, 0.07);
  font-weight: 950;
}

.robot-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin: -2px -2px 18px;
  border: 1px solid rgba(120, 231, 255, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 70% 20%, rgba(120, 231, 255, 0.22), transparent 32%),
    rgba(255, 255, 255, 0.04);
}

.robot-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease, filter 220ms ease;
}

.robot-database-grid article:hover .robot-visual img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.robot-visual figcaption {
  position: absolute;
  left: 8px;
  bottom: 8px;
  max-width: calc(100% - 16px);
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(2, 8, 18, 0.64);
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 800;
}

.robot-visual-empty {
  display: grid;
  place-items: center;
}

.robot-visual-empty span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(120, 231, 255, 0.3);
  border-radius: 14px;
  color: #d9e8ff;
  background: rgba(255, 255, 255, 0.07);
  font-size: 24px;
  font-weight: 950;
}

.robot-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  margin-bottom: 16px;
}

.robot-card-top .robot-icon {
  flex: 0 0 auto;
  margin-bottom: 0;
}

.robot-card-top span,
.robot-database-grid article > span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.robot-database-grid h3 {
  margin-bottom: 10px;
  font-size: 25px;
  line-height: 1.08;
}

.robot-database-grid p {
  color: #c4cedc;
  line-height: 1.58;
}

.robot-database-grid ul {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.robot-database-grid li {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 10px;
  color: #c4cedc;
  font-size: 14px;
  line-height: 1.45;
}

.robot-database-grid li strong {
  color: #d9e8ff;
}

.robot-database-grid a {
  display: inline-flex;
  margin-top: auto;
  color: var(--blue-2);
  font-weight: 850;
}

.robot-score-row {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.robot-score-row span {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  color: #93a4bb;
  font-size: 12px;
  font-weight: 850;
}

.rscore-mini-bars {
  display: grid;
  gap: 8px;
  margin: 2px 0 4px;
  padding: 0;
  list-style: none;
}

.rscore-mini-bars li {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 34px;
  gap: 9px;
  align-items: center;
  color: #93a4bb;
  font-size: 11px;
  font-weight: 850;
}

.rscore-mini-bars b {
  display: block;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.15);
}

.rscore-mini-bars i {
  display: block;
  width: calc(var(--score) * 100%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2f8cff, #7df9ff 58%, #2dd4bf);
  box-shadow: 0 0 16px rgba(125, 249, 255, 0.24);
}

.rscore-mini-bars em {
  color: #dff8ff;
  font-style: normal;
  text-align: right;
}

.profile-rscore-bars {
  margin: 0 0 18px;
}

.robot-card-video {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
}

.robot-card-video button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(120, 231, 255, 0.26);
  border-radius: 7px;
  color: #eaf6ff;
  background: rgba(20, 184, 166, 0.12);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
}

.robot-card-video button span {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, #14b8a6, #0f766e);
  font-size: 9px;
}

.robot-card-video button.is-playing {
  border-color: rgba(120, 231, 255, 0.58);
  background: rgba(20, 184, 166, 0.22);
}

.robot-card-video-frame {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(120, 231, 255, 0.2);
  border-radius: 8px;
  background: #020812;
}

.robot-card-video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.robot-meter {
  display: block;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.18);
}

.robot-meter i {
  display: block;
  width: calc(var(--score) * 100%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #14b8a6, #5eead4);
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(12, 21, 35, 0.96), rgba(5, 11, 20, 0.98));
  box-shadow: var(--shadow);
}

.compare-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 17px 18px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  text-align: left;
  vertical-align: top;
}

.compare-table th {
  color: #7f8ea6;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.compare-table td {
  color: #d8e4f5;
  line-height: 1.5;
}

.radar-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: stretch;
}

.radar-main,
.sponsor-section {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 18%, rgba(120, 231, 255, 0.24), transparent 32%),
    linear-gradient(145deg, rgba(18, 35, 60, 0.9), rgba(7, 17, 31, 0.94));
  box-shadow: var(--shadow);
}

.radar-main p,
.sponsor-section p {
  margin: 0 0 12px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.radar-main h2,
.sponsor-section h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.radar-main span,
.sponsor-section span {
  display: block;
  color: #c4cedc;
  line-height: 1.65;
}

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

.radar-list article {
  min-height: 92px;
  padding: 20px;
}

.radar-list strong {
  display: block;
  margin-bottom: 8px;
  color: #d9e8ff;
  font-size: 18px;
}

.radar-list span {
  color: #c4cedc;
  line-height: 1.55;
}

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

.glossary-grid article {
  min-height: 160px;
  padding: 20px;
}

.glossary-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
}

.glossary-grid span {
  color: #c4cedc;
  line-height: 1.55;
}

.source-notes-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 24%, rgba(94, 234, 212, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(18, 35, 60, 0.9), rgba(7, 17, 31, 0.94));
  box-shadow: var(--shadow);
}

.source-notes-section p {
  margin: 0 0 12px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.source-notes-section h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.source-notes-section span {
  color: #c4cedc;
  line-height: 1.65;
}

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

.source-note-list article {
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.source-note-list strong {
  display: block;
  margin-bottom: 8px;
}

.sponsor-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.sponsor-section a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  color: white;
  background: var(--blue);
  font-weight: 850;
  white-space: nowrap;
}

body.light-theme .robot-database-grid article,
body.light-theme .robot-visual,
body.light-theme .index-grid a,
body.light-theme .guide-grid a,
body.light-theme .files-grid a,
body.light-theme .database-panel,
body.light-theme .database-insight-grid article,
body.light-theme .glossary-grid article,
body.light-theme .radar-list article,
body.light-theme .radar-main,
body.light-theme .source-notes-section,
body.light-theme .sponsor-section {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(235, 243, 252, 0.94));
}

body.light-theme .robot-database-grid p,
body.light-theme .robot-database-grid li,
body.light-theme .robot-score-row span,
body.light-theme .index-grid span,
body.light-theme .guide-grid small,
body.light-theme .files-grid small,
body.light-theme .database-status,
body.light-theme .database-insight-grid span,
body.light-theme .database-result-card p,
body.light-theme .source-notes-section span,
body.light-theme .radar-main span,
body.light-theme .radar-list span,
body.light-theme .glossary-grid span,
body.light-theme .sponsor-section span {
  color: #43566c;
}

body.light-theme .robot-database-grid li strong,
body.light-theme .robot-visual-empty span,
body.light-theme .index-grid strong,
body.light-theme .guide-grid strong,
body.light-theme .files-grid strong,
body.light-theme .database-insight-grid strong,
body.light-theme .database-result-card strong,
body.light-theme .radar-list strong {
  color: #162235;
}

body.light-theme .database-result-card,
body.light-theme .database-status {
  border-color: rgba(42, 63, 92, 0.14);
}

body.light-theme .database-result-card small {
  color: #66788d;
}

.cinema-section {
  margin-top: 34px;
}

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

.cinema-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 76% 18%, rgba(120, 231, 255, 0.34), transparent 26%),
    linear-gradient(145deg, rgba(18, 35, 60, 0.94), rgba(7, 17, 31, 0.98));
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.cinema-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.46;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(160deg, transparent 0%, black 42%, transparent 100%);
}

.cinema-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(119, 181, 255, 0.32);
  border-radius: 50%;
  box-shadow: inset 0 0 0 18px rgba(20, 184, 166, 0.08);
}

.cinema-card:hover {
  transform: translateY(-4px);
  border-color: rgba(120, 231, 255, 0.58);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.24);
}

.cinema-card span,
.cinema-card h3,
.cinema-card p {
  position: relative;
  z-index: 1;
}

.cinema-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 70px;
  border: 1px solid rgba(119, 181, 255, 0.34);
  border-radius: 50%;
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 900;
  background: rgba(7, 17, 31, 0.52);
}

.cinema-card h3 {
  margin-bottom: 12px;
  font-size: 25px;
  line-height: 1.05;
}

.cinema-card p {
  color: #c4cedc;
  line-height: 1.55;
}

.cinema-card.blade-runner {
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 155, 84, 0.24), transparent 26%),
    linear-gradient(145deg, rgba(36, 31, 52, 0.94), rgba(7, 17, 31, 0.98));
}

.cinema-card.her {
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 101, 129, 0.22), transparent 26%),
    linear-gradient(145deg, rgba(38, 25, 42, 0.94), rgba(7, 17, 31, 0.98));
}

.cinema-card.wall-e {
  background:
    radial-gradient(circle at 76% 18%, rgba(111, 217, 173, 0.22), transparent 26%),
    linear-gradient(145deg, rgba(20, 45, 49, 0.94), rgba(7, 17, 31, 0.98));
}

.section-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue-2);
  font-weight: 800;
}

body.light-theme .cinema-card {
  background:
    radial-gradient(circle at 76% 18%, rgba(20, 184, 166, 0.18), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(235, 243, 252, 0.94));
}

body.light-theme .cinema-card p {
  color: #43566c;
}

body.light-theme .cinema-card span {
  background: rgba(255, 255, 255, 0.72);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.contact-methods a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(20, 184, 166, 0.08);
  padding: 15px 18px;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(100% - 28px, 1320px);
  margin: 10px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(120, 231, 255, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(120, 231, 255, 0.07), transparent 38%),
    rgba(2, 8, 18, 0.74);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(22px) saturate(1.28);
}

body.light-theme .site-header {
  background: rgba(247, 251, 255, 0.86);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 27px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0;
}

.brand img {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 20px rgba(20, 184, 166, 0.22));
}

.brand-full {
  gap: 0;
}

.brand-full .brand-logo-full {
  width: 158px;
  height: auto;
  filter: drop-shadow(0 14px 28px rgba(47, 227, 255, 0.18));
}

.brand-full .brand-logo-mini {
  display: none;
}

.brand span {
  color: var(--blue);
}

.main-nav,
.header-actions,
.language-switch,
.stats,
.filter-panel,
.load-more,
.newsletter form,
.socials {
  display: flex;
  align-items: center;
}

.main-nav {
  gap: 5px;
  font-size: 13px;
  font-weight: 720;
}

.main-nav a,
.nav-item > a {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

body.light-theme .main-nav a,
body.light-theme .nav-item > a {
  color: #233146;
}

.main-nav a.active,
.main-nav a:hover,
.nav-item:hover > a,
.nav-item:focus-within > a {
  color: var(--blue-2);
  border-color: rgba(120, 231, 255, 0.2);
  background: rgba(120, 231, 255, 0.08);
  box-shadow: 0 0 26px rgba(56, 189, 248, 0.12);
  transform: translateY(-1px);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 3px;
  height: 2px;
  background: var(--blue);
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(120, 231, 255, 0.85);
}

.nav-item {
  position: relative;
}

.nav-item > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-menu {
  position: absolute;
  top: calc(100% - 5px);
  left: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  gap: 6px;
  width: min(520px, calc(100vw - 40px));
  padding: 12px;
  border: 1px solid rgba(120, 231, 255, 0.24);
  border-radius: 8px;
  background: rgba(5, 13, 24, 0.98);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-item:hover .nav-menu,
.nav-item:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu.compact-menu {
  width: min(360px, calc(100vw - 40px));
  grid-template-columns: 1fr;
}

.nav-menu a {
  display: grid;
  gap: 5px;
  min-height: 76px;
  padding: 13px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
}

.nav-menu a:hover {
  border-color: rgba(120, 231, 255, 0.42);
  background: rgba(120, 231, 255, 0.12);
}

.nav-menu strong {
  color: #eef6ff;
  font-size: 14px;
}

.nav-menu span {
  color: #93a4bb;
  font-size: 12px;
  line-height: 1.35;
}

body.light-theme .nav-menu {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(14, 42, 76, 0.16);
}

body.light-theme .nav-menu a {
  background: rgba(20, 184, 166, 0.04);
}

body.light-theme .nav-menu strong {
  color: #162235;
}

body.light-theme .nav-menu span {
  color: #53657a;
}

.header-actions {
  gap: 10px;
}

.intelligence-controls {
  position: relative;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(120, 231, 255, 0.16);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(7, 17, 29, 0.78), rgba(4, 12, 24, 0.52));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 48px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.intelligence-controls::before {
  content: "";
  position: absolute;
  inset: 3px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(120, 231, 255, 0.2), transparent 34%, rgba(45, 212, 191, 0.12));
  opacity: 0.75;
}

.live-control {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid rgba(120, 231, 255, 0.16);
  border-radius: 999px;
  color: #dff8ff;
  background: rgba(8, 18, 32, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  white-space: nowrap;
}

.live-control i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #46f3ff;
  box-shadow: 0 0 0 5px rgba(70, 243, 255, 0.12), 0 0 18px rgba(70, 243, 255, 0.72);
  animation: heroPulse 1.8s ease-in-out infinite;
}

.live-control b {
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-control small {
  color: #7f95b2;
  font-size: 11px;
  font-weight: 800;
}

.language-switch {
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.language-switch button {
  min-width: 34px;
  height: 28px;
  padding: 0 9px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
}

.language-switch button.active {
  color: white;
  background: var(--blue);
}

.theme-toggle {
  position: relative;
  width: 44px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 3px;
  color: #07111d;
  background: linear-gradient(135deg, #111d30, #06101d);
  border: 1px solid rgba(120, 231, 255, 0.42);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 10px 26px rgba(0, 0, 0, 0.24);
  transition: background 180ms ease, border-color 180ms ease;
}

.theme-toggle span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dbeafe;
  box-shadow: 0 0 18px rgba(120, 231, 255, 0.42);
  font-size: 17px;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

body.light-theme .theme-toggle {
  justify-content: flex-end;
  color: #7a4b00;
  background: linear-gradient(135deg, #dbeafe, #ffffff);
  border-color: rgba(20, 184, 166, 0.28);
}

body.light-theme .theme-toggle span {
  background: #ffd166;
  box-shadow: 0 0 18px rgba(245, 158, 11, 0.35);
}

.icon-button,
.join-button,
.clear-button,
.load-more button,
.newsletter button {
  border: 0;
  color: var(--text);
  cursor: pointer;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: transparent;
}

.icon-button svg,
.search-box button svg,
.clear-button svg,
.stats svg,
.mail-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.join-button,
.newsletter button {
  min-height: 44px;
  padding: 0 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, #14b8a6, #0f766e);
  box-shadow: 0 12px 30px rgba(20, 184, 166, 0.26);
  font-weight: 780;
}

.language-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(120, 231, 255, 0.2);
  border-radius: 999px;
  color: #dff8ff;
  background: rgba(8, 18, 32, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  font-size: 12px;
  font-weight: 950;
}

.language-pill span {
  color: #7f95b2;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-pill strong {
  color: #7df9ff;
  font-size: 12px;
}

.nav-search-button {
  width: auto;
  min-width: 84px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 11px;
  border: 1px solid rgba(120, 231, 255, 0.22);
  border-radius: 999px;
  color: #dff8ff;
  background: rgba(8, 18, 32, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  font-size: 12px;
  font-weight: 900;
}

.nav-search-button svg {
  width: 18px;
  height: 18px;
}

.x-cta {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  color: #04111c;
  background: linear-gradient(135deg, #7df9ff 0%, #2f8cff 52%, #2dd4bf 100%);
  box-shadow: 0 14px 34px rgba(47, 140, 255, 0.32), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}

.language-pill,
.nav-search-button,
.x-cta {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.language-pill:hover,
.nav-search-button:hover,
.x-cta:hover {
  transform: translateY(-1px);
}

.language-pill:hover,
.nav-search-button:hover {
  border-color: rgba(120, 231, 255, 0.46);
  background: rgba(11, 28, 48, 0.86);
  box-shadow: 0 12px 30px rgba(47, 140, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.x-cta:hover {
  box-shadow: 0 18px 42px rgba(47, 140, 255, 0.44), 0 0 28px rgba(125, 249, 255, 0.2);
}

body.light-theme .intelligence-controls {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(20, 184, 166, 0.18);
  box-shadow: 0 18px 44px rgba(14, 42, 76, 0.12);
}

body.light-theme .live-control,
body.light-theme .language-pill,
body.light-theme .nav-search-button {
  color: #143044;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(20, 184, 166, 0.2);
}

body.light-theme .live-control small,
body.light-theme .language-pill span {
  color: #5c7086;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.9fr);
  gap: clamp(18px, 3vw, 40px);
  min-height: 390px;
  margin-top: 12px;
  padding: clamp(30px, 5vw, 48px);
  overflow: hidden;
  border: 1px solid rgba(82, 180, 255, 0.2);
  border-radius: 18px;
  background:
    radial-gradient(circle at 72% 22%, rgba(46, 166, 255, 0.28), transparent 27%),
    radial-gradient(circle at 92% 82%, rgba(20, 184, 166, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(4, 10, 22, 0.98), rgba(8, 18, 35, 0.96) 48%, rgba(2, 7, 16, 0.98));
  box-shadow:
    0 38px 110px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(120, 231, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 231, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, black, transparent 78%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74, 196, 255, 0.96), transparent);
  box-shadow: 0 0 28px rgba(74, 196, 255, 0.74);
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 610px;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(40px, 5.7vw, 58px);
  line-height: 1.06;
  letter-spacing: 0;
}

h1 span {
  color: var(--blue);
}

.hero h1 {
  margin-bottom: 14px;
  font-size: clamp(38px, 4.8vw, 58px);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 span {
  color: #78e7ff;
  text-shadow: 0 0 34px rgba(78, 183, 255, 0.46);
}

.hero p {
  max-width: 560px;
  margin-bottom: 16px;
  color: rgba(226, 238, 255, 0.78);
  font-size: clamp(14px, 1.25vw, 17px);
  line-height: 1.45;
}

body.light-theme .hero p {
  color: #26394f;
}

.hero-kicker {
  width: fit-content;
  margin-bottom: 12px !important;
  padding: 7px 11px;
  color: #bfeeff !important;
  background: rgba(32, 130, 255, 0.12);
  border: 1px solid rgba(120, 231, 255, 0.32);
  border-radius: 999px;
  box-shadow: 0 0 30px rgba(32, 130, 255, 0.15);
  font-size: 12px !important;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.light-theme .hero-kicker {
  color: #0f5ec8 !important;
  background: rgba(20, 184, 166, 0.1);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 2px 0 14px;
}

.hero-primary-action,
.hero-secondary-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.hero-primary-action {
  color: #04101d;
  background: linear-gradient(135deg, #78e7ff, #2f8cff);
  box-shadow: 0 16px 42px rgba(47, 140, 255, 0.36);
}

.hero-secondary-action {
  color: #d9f6ff;
  border: 1px solid rgba(120, 231, 255, 0.28);
  background: rgba(255, 255, 255, 0.055);
}

.hero-primary-action:hover,
.hero-secondary-action:hover {
  transform: translateY(-2px);
  border-color: rgba(120, 231, 255, 0.58);
  box-shadow: 0 22px 54px rgba(47, 140, 255, 0.28);
}

.search-box {
  position: relative;
  width: min(510px, 100%);
  margin-bottom: 14px;
}

.search-box label,
.newsletter label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.search-box input {
  width: 100%;
  min-height: 46px;
  padding: 0 56px 0 20px;
  color: var(--text);
  background: rgba(6, 15, 30, 0.78);
  border: 1px solid rgba(120, 231, 255, 0.24);
  border-radius: 14px;
  outline: 0;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.search-box input:focus {
  border-color: rgba(120, 231, 255, 0.72);
  background: rgba(7, 20, 38, 0.92);
  box-shadow: 0 0 0 4px rgba(47, 140, 255, 0.12), 0 18px 46px rgba(0, 0, 0, 0.3);
}

body.light-theme .search-box input,
body.light-theme .filter-panel select,
body.light-theme .newsletter input {
  color: #0d1624;
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(42, 63, 92, 0.22);
}

.search-box input::placeholder,
.newsletter input::placeholder {
  color: #aeb8ca;
}

body.light-theme .search-box input::placeholder,
body.light-theme .newsletter input::placeholder {
  color: #6a7c90;
}

.search-box button {
  position: absolute;
  top: 0;
  right: 6px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--text);
  border: 0;
  background: transparent;
  cursor: pointer;
}

.stats {
  gap: 10px;
  flex-wrap: wrap;
}

.stats div {
  position: relative;
  display: grid;
  grid-template-columns: 22px auto;
  column-gap: 10px;
  align-items: center;
  min-width: 122px;
  padding: 10px 12px;
  border: 1px solid rgba(120, 231, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.stats div::before {
  content: "";
  position: absolute;
  inset: -8px 8px -8px -10px;
  border-radius: 8px;
  background: rgba(20, 184, 166, 0.06);
  opacity: 0;
  transition: opacity 180ms ease;
}

.stats div:hover {
  transform: translateY(-2px);
  border-color: rgba(120, 231, 255, 0.34);
  background: rgba(120, 231, 255, 0.075);
}

.stats svg {
  grid-row: span 2;
  color: var(--blue);
}

.stats strong {
  font-size: 18px;
}

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

.hero-visual {
  position: absolute;
  top: 22px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  width: 43%;
  min-width: 420px;
  pointer-events: none;
  border: 1px solid rgba(120, 231, 255, 0.13);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 36%, rgba(74, 196, 255, 0.16), transparent 32%),
    linear-gradient(145deg, rgba(7, 17, 31, 0.58), rgba(4, 10, 22, 0.18));
  box-shadow: inset 0 0 60px rgba(47, 140, 255, 0.08);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(120, 231, 255, 0.13) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(120, 231, 255, 0.1) 50%, transparent 51%);
  opacity: 0.32;
  mask-image: radial-gradient(circle at 58% 45%, black, transparent 66%);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 0 48%, rgba(120, 231, 255, 0.08) 49%, transparent 50% 100%);
  background-size: 100% 18px;
  opacity: 0.26;
  animation: heroScanlines 7s linear infinite;
  pointer-events: none;
}

.hero-radar {
  position: absolute;
  left: 30px;
  bottom: 28px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(120, 231, 255, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(120, 231, 255, 0.18) 0 2px, transparent 3px),
    repeating-radial-gradient(circle, transparent 0 38px, rgba(120, 231, 255, 0.13) 39px 40px),
    conic-gradient(from 0deg, rgba(120, 231, 255, 0.42), transparent 27%, transparent);
  box-shadow: inset 0 0 38px rgba(47, 140, 255, 0.12), 0 0 34px rgba(47, 140, 255, 0.1);
  opacity: 0.78;
  animation: heroRadarSpin 9s linear infinite;
}

.hero-radar::before,
.hero-radar::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(120, 231, 255, 0.6), transparent);
  transform-origin: left center;
}

.hero-radar::after {
  transform: rotate(90deg);
  opacity: 0.58;
}

.hero-radar span {
  position: absolute;
  left: 42%;
  top: 28%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #78e7ff;
  box-shadow: 0 0 18px #78e7ff;
  animation: heroPulse 1.8s ease-in-out infinite;
}

.hero-particle-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}

.hero-particle-field i {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(120, 231, 255, 0.82);
  box-shadow: 0 0 18px rgba(120, 231, 255, 0.8);
  animation: heroParticleDrift 8s ease-in-out infinite;
}

.hero-particle-field i:nth-child(1) { left: 18%; top: 24%; animation-delay: -1s; }
.hero-particle-field i:nth-child(2) { left: 72%; top: 18%; animation-delay: -3s; }
.hero-particle-field i:nth-child(3) { left: 84%; top: 46%; animation-delay: -5s; }
.hero-particle-field i:nth-child(4) { left: 34%; top: 70%; animation-delay: -2s; }
.hero-particle-field i:nth-child(5) { left: 62%; top: 76%; animation-delay: -4s; }
.hero-particle-field i:nth-child(6) { left: 48%; top: 34%; animation-delay: -6s; }

.hero-wireframe {
  position: absolute;
  right: 70px;
  top: 54px;
  width: 220px;
  height: 340px;
  opacity: 0.5;
  filter: drop-shadow(0 0 20px rgba(120, 231, 255, 0.26));
  animation: heroWirePulse 4s ease-in-out infinite;
}

.hero-wireframe span {
  position: absolute;
  border: 1px solid rgba(120, 231, 255, 0.36);
  background: rgba(120, 231, 255, 0.035);
}

.wire-head {
  left: 98px;
  top: 0;
  width: 64px;
  height: 78px;
  border-radius: 42% 42% 48% 48%;
}

.wire-spine {
  left: 128px;
  top: 82px;
  width: 1px;
  height: 200px;
  background: rgba(120, 231, 255, 0.45);
}

.wire-shoulders {
  left: 50px;
  top: 102px;
  width: 160px;
  height: 1px;
}

.wire-arm {
  top: 110px;
  width: 1px;
  height: 138px;
  transform-origin: top center;
}

.wire-arm-left {
  left: 58px;
  transform: rotate(18deg);
}

.wire-arm-right {
  right: 58px;
  transform: rotate(-18deg);
}

.wire-hip {
  left: 76px;
  top: 272px;
  width: 108px;
  height: 1px;
}

.hero-live-signals {
  position: absolute;
  left: 34px;
  top: 44%;
  z-index: 3;
  display: grid;
  gap: 8px;
  min-width: 230px;
}

.hero-live-signals span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(120, 231, 255, 0.18);
  border-radius: 999px;
  color: #cfeeff;
  background: rgba(2, 8, 18, 0.58);
  backdrop-filter: blur(14px);
  font-size: 11px;
  font-weight: 850;
  animation: heroSignalFloat 5s ease-in-out infinite;
}

.hero-live-signals span:nth-child(2) {
  margin-left: 28px;
  animation-delay: -1.4s;
}

.hero-live-signals span:nth-child(3) {
  margin-left: 10px;
  animation-delay: -2.8s;
}

.hero-live-signals b {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2dd4bf;
  box-shadow: 0 0 14px rgba(45, 212, 191, 0.78);
}

.data-wave {
  position: absolute;
  right: -140px;
  bottom: -8px;
  width: 640px;
  height: 170px;
  opacity: 0.72;
  background-image: radial-gradient(circle, rgba(78, 183, 255, 0.88) 1.1px, transparent 1.4px);
  background-size: 18px 18px;
  mask-image: radial-gradient(ellipse at 60% 50%, black, transparent 70%);
  transform: perspective(700px) rotateX(58deg) rotateZ(-5deg);
}

body.light-theme .data-wave {
  opacity: 0.46;
}

.robot-head {
  position: absolute;
  right: 70px;
  top: 38px;
  width: 290px;
  height: 290px;
  filter: drop-shadow(0 34px 78px rgba(0, 0, 0, 0.58)) drop-shadow(0 0 34px rgba(74, 196, 255, 0.18));
  animation: heroFloat 5.5s ease-in-out infinite;
}

.hero-orbit-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 3px;
  min-width: 116px;
  padding: 12px;
  border: 1px solid rgba(120, 231, 255, 0.22);
  border-radius: 14px;
  background: rgba(4, 12, 24, 0.72);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
  animation: heroCardFloat 6s ease-in-out infinite;
}

.hero-orbit-card span,
.hero-orbit-card small {
  color: #9fb7c8;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-orbit-card strong {
  color: #dff9ff;
  font-size: 27px;
  line-height: 1;
  text-shadow: 0 0 24px rgba(78, 183, 255, 0.34);
}

.hero-orbit-card-top {
  top: 34px;
  left: 34px;
}

.hero-orbit-card-bottom {
  right: 30px;
  bottom: 30px;
  animation-delay: -2s;
}

.live-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.live-stats-strip article {
  position: relative;
  overflow: hidden;
  min-height: 86px;
  padding: 16px 18px;
  border: 1px solid rgba(120, 231, 255, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(120, 231, 255, 0.1), transparent 42%),
    rgba(6, 15, 30, 0.78);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.live-stats-strip article::after {
  content: "";
  position: absolute;
  inset: auto 18px 14px 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(120, 231, 255, 0.9), transparent);
  box-shadow: 0 0 18px rgba(120, 231, 255, 0.55);
}

.live-stats-strip article:hover {
  transform: translateY(-3px);
  border-color: rgba(120, 231, 255, 0.42);
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.32), 0 0 34px rgba(56, 189, 248, 0.1);
}

.live-stats-strip strong {
  display: block;
  color: #eef9ff;
  font-size: clamp(28px, 3.1vw, 42px);
  line-height: 0.9;
}

.live-stats-strip span {
  display: block;
  margin-top: 9px;
  color: #9fb2c9;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.live-stats-strip small {
  display: block;
  margin-top: 5px;
  color: #71849d;
  font-size: 12px;
  line-height: 1.35;
}

.live-intelligence-board {
  display: grid;
  grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
  gap: 12px;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid rgba(120, 231, 255, 0.18);
  border-radius: 14px;
  background:
    radial-gradient(circle at 18% 8%, rgba(56, 189, 248, 0.18), transparent 32%),
    rgba(4, 12, 25, 0.82);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.live-intelligence-head p {
  margin: 0 0 10px;
  color: var(--blue-2);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.live-intelligence-head h2 {
  margin: 0;
  color: #eef6ff;
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.02;
}

.live-intelligence-feed {
  display: grid;
  grid-column: 2;
  grid-row: 1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.live-intelligence-feed article {
  position: relative;
  overflow: hidden;
  min-height: 106px;
  padding: 14px;
  border: 1px solid rgba(120, 231, 255, 0.16);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.live-intelligence-feed article::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #46f3ff;
  box-shadow: 0 0 18px rgba(70, 243, 255, 0.9);
  animation: heroPulse 1.8s ease-in-out infinite;
}

.live-intelligence-feed article:hover {
  transform: translateY(-3px);
  border-color: rgba(120, 231, 255, 0.38);
  background: rgba(120, 231, 255, 0.08);
}

.live-intelligence-feed span {
  display: block;
  color: var(--blue-2);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-intelligence-feed strong {
  display: block;
  margin-top: 9px;
  color: #eef6ff;
  font-size: 16px;
}

.live-intelligence-feed small {
  display: block;
  margin-top: 7px;
  color: #9fb2c9;
  line-height: 1.35;
}

.robotics-signal-ticker {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: 0;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(120, 231, 255, 0.18);
  border-radius: 12px;
  background: rgba(4, 12, 25, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.ticker-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(120, 231, 255, 0.18);
  border-radius: 999px;
  color: #dff8ff;
  background: rgba(120, 231, 255, 0.08);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-label span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #46f3ff;
  box-shadow: 0 0 18px rgba(70, 243, 255, 0.84);
}

.ticker-viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: roboticsTicker 34s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 999px;
  color: #b7c6da;
  background: rgba(255, 255, 255, 0.045);
  font-size: 13px;
  white-space: nowrap;
}

.trending-robots-section,
.rscore-command-section,
.home-compare-section {
  position: relative;
  overflow: hidden;
  margin-top: 34px;
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid rgba(120, 231, 255, 0.2);
  border-radius: 12px;
  background:
    radial-gradient(circle at 12% 8%, rgba(56, 189, 248, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(5, 11, 20, 0.98), rgba(8, 23, 42, 0.94));
  box-shadow: var(--shadow);
}

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

.trending-robots-grid a {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border: 1px solid rgba(120, 231, 255, 0.18);
  border-radius: 10px;
  background: rgba(6, 15, 30, 0.82);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.trending-robots-grid a:hover {
  transform: translateY(-5px);
  border-color: rgba(120, 231, 255, 0.56);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32), 0 0 34px rgba(56, 189, 248, 0.12);
}

.trending-robots-grid img {
  width: 100%;
  height: 190px;
  display: block;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.04);
}

.trending-robots-grid span,
.trending-robots-grid strong,
.trending-robots-grid small,
.trending-robots-grid em {
  display: block;
  margin-left: 18px;
  margin-right: 18px;
}

.trending-robots-grid span {
  margin-top: 18px;
  color: var(--blue-2);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trending-robots-grid strong {
  margin-top: 7px;
  color: #eef6ff;
  font-size: 25px;
  line-height: 1;
}

.trending-robots-grid small {
  margin-top: 11px;
  color: #aab8ca;
  line-height: 1.45;
}

.trending-robots-grid dl {
  display: grid;
  gap: 7px;
  margin: 16px 18px 0;
}

.trending-robots-grid dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.trending-robots-grid dt,
.trending-robots-grid dd {
  margin: 0;
  font-size: 11px;
  line-height: 1.25;
}

.trending-robots-grid dt {
  color: #71849d;
}

.trending-robots-grid dd {
  color: #d8e8fa;
  font-weight: 850;
  text-align: right;
}

.trending-robots-grid em {
  width: fit-content;
  margin-top: 16px;
  padding: 8px 10px;
  border: 1px solid rgba(120, 231, 255, 0.3);
  border-radius: 999px;
  color: #dff8ff;
  background: rgba(120, 231, 255, 0.08);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
}

.rscore-command-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(330px, 0.7fr) minmax(280px, 0.75fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
}

.rscore-command-main p {
  margin: 0 0 12px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rscore-command-main h2 {
  max-width: 650px;
  margin-bottom: 14px;
  color: #eef6ff;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 0.98;
}

.rscore-command-main span {
  display: block;
  max-width: 620px;
  color: #aab8ca;
  line-height: 1.65;
}

.rscore-command-main a,
.home-compare-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 22px;
  padding: 0 18px;
  border-radius: 999px;
  color: #04101d;
  background: linear-gradient(135deg, #78e7ff, #2f8cff);
  box-shadow: 0 18px 48px rgba(47, 140, 255, 0.28);
  font-size: 13px;
  font-weight: 950;
}

.rscore-command-meter {
  padding: 22px;
  border: 1px solid rgba(120, 231, 255, 0.2);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 22%, rgba(120, 231, 255, 0.18), transparent 42%),
    rgba(2, 8, 18, 0.76);
}

.rscore-command-meter > div {
  display: grid;
  place-items: center;
  width: 190px;
  height: 190px;
  margin: 0 auto 22px;
  border: 1px solid rgba(120, 231, 255, 0.42);
  border-radius: 50%;
  background:
    conic-gradient(from 220deg, #78e7ff 0 342deg, rgba(255, 255, 255, 0.08) 342deg 360deg),
    rgba(4, 12, 25, 0.92);
  box-shadow: 0 0 48px rgba(56, 189, 248, 0.2);
}

.rscore-command-meter strong {
  color: #f2fbff;
  font-size: 70px;
  line-height: 0.82;
}

.rscore-command-meter > div span {
  color: #9fc5ff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rscore-command-meter ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rscore-command-meter li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px 12px;
  align-items: center;
  color: #d9e8f8;
  font-size: 13px;
  font-weight: 850;
}

.rscore-command-meter li span {
  grid-column: 1 / -1;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.rscore-command-meter li span::before {
  content: "";
  display: block;
  width: calc(var(--score) * 100%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2f8cff, #78e7ff);
  box-shadow: 0 0 18px rgba(120, 231, 255, 0.45);
}

.rscore-command-meter li em {
  color: #78e7ff;
  font-style: normal;
  font-weight: 950;
}

.rscore-leaderboard {
  display: grid;
  gap: 10px;
}

.rscore-leaderboard article {
  padding: 16px;
  border: 1px solid rgba(120, 231, 255, 0.18);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.rscore-leaderboard article:hover {
  transform: translateX(4px);
  border-color: rgba(120, 231, 255, 0.42);
  background: rgba(120, 231, 255, 0.08);
}

.rscore-leaderboard span {
  color: var(--blue-2);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rscore-leaderboard strong {
  display: block;
  margin-top: 8px;
  color: #eef6ff;
  font-size: 20px;
}

.rscore-leaderboard small {
  display: block;
  margin-top: 8px;
  color: #9fb2c9;
  line-height: 1.4;
}

.rscore-leaderboard a {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 900;
}

.rscore-lab-section {
  position: relative;
}

.rscore-lab-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  gap: 16px;
}

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

.rscore-snapshot-grid article {
  min-height: 145px;
  padding: 18px;
  border: 1px solid rgba(120, 231, 255, 0.16);
  border-radius: 8px;
  background: radial-gradient(circle at 20% 0%, rgba(120, 231, 255, 0.14), transparent 45%), rgba(7, 17, 31, 0.76);
}

.rscore-snapshot-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--blue-2);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.rscore-snapshot-grid strong {
  display: block;
  color: #eaf6ff;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
}

.rscore-snapshot-grid small {
  display: block;
  margin-top: 12px;
  color: #9fb0c8;
  line-height: 1.45;
}

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

.leaderboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(18px, 4vw, 42px);
  margin-top: 18px;
  padding: clamp(32px, 6vw, 68px);
  border: 1px solid rgba(120, 231, 255, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 18%, rgba(47, 140, 255, 0.24), transparent 34%),
    radial-gradient(circle at 86% 10%, rgba(45, 212, 191, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(3, 9, 20, 0.98), rgba(7, 20, 35, 0.94));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.leaderboard-hero p,
.leaderboard-section .section-heading p {
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.leaderboard-hero h1 {
  max-width: 820px;
  margin: 12px 0 14px;
  color: #eef6ff;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.95;
}

.leaderboard-hero span {
  display: block;
  max-width: 660px;
  color: #b9c8db;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.55;
}

.leaderboard-hero-metrics {
  display: grid;
  gap: 12px;
  align-content: end;
}

.leaderboard-hero-metrics article {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(120, 231, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(16px);
}

.leaderboard-hero-metrics strong {
  display: block;
  color: #eef6ff;
  font-size: 34px;
  line-height: 1;
}

.leaderboard-hero-metrics small {
  display: block;
  margin-top: 10px;
  color: #95a8c0;
  font-weight: 800;
}

.leaderboard-section {
  margin-top: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(120, 231, 255, 0.16);
  border-radius: 12px;
  background: rgba(7, 17, 31, 0.68);
}

.leaderboard-table-wrap {
  overflow-x: auto;
  margin-top: 18px;
  border: 1px solid rgba(120, 231, 255, 0.14);
  border-radius: 10px;
  background: rgba(2, 8, 18, 0.54);
}

.leaderboard-table {
  min-width: 980px;
}

.leaderboard-row {
  display: grid;
  grid-template-columns: 74px 1.2fr 1fr 0.8fr 0.7fr 0.72fr 0.72fr 104px;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  color: #c6d3e2;
}

.leaderboard-row:last-child {
  border-bottom: 0;
}

.leaderboard-row:not(.leaderboard-head):hover {
  background: rgba(120, 231, 255, 0.055);
}

.leaderboard-head {
  position: sticky;
  top: 0;
  z-index: 1;
  color: #7df9ff;
  background: rgba(5, 14, 28, 0.94);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.leaderboard-rank {
  color: #7df9ff;
  font-size: 18px;
  font-weight: 950;
}

.leaderboard-robot {
  display: grid;
  gap: 5px;
}

.leaderboard-robot strong {
  color: #eef6ff;
  font-size: 18px;
}

.leaderboard-robot small {
  color: #8fa3bc;
  font-size: 12px;
  font-weight: 850;
}

.leaderboard-score strong {
  color: #eef6ff;
  font-size: 24px;
}

.leaderboard-score small {
  color: #8fa3bc;
  font-weight: 850;
}

.trend-badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(120, 231, 255, 0.22);
  border-radius: 999px;
  color: #dff8ff;
  background: rgba(120, 231, 255, 0.1);
  font-style: normal;
  font-size: 12px;
  font-weight: 950;
}

.trend-hot,
.trend-rising {
  color: #04111c;
  background: linear-gradient(135deg, #7df9ff, #2dd4bf);
}

.trend-ai {
  border-color: rgba(125, 249, 255, 0.38);
  background: rgba(47, 140, 255, 0.22);
}

.trend-mobility {
  border-color: rgba(45, 212, 191, 0.38);
  background: rgba(45, 212, 191, 0.14);
}

.leaderboard-compare {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(120, 231, 255, 0.28);
  border-radius: 999px;
  color: #dff8ff;
  background: rgba(120, 231, 255, 0.1);
  font-size: 12px;
  font-weight: 950;
}

.signals-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(18px, 4vw, 46px);
  align-items: center;
  margin-top: 18px;
  padding: clamp(34px, 6vw, 74px);
  border: 1px solid rgba(120, 231, 255, 0.2);
  border-radius: 18px;
  background:
    linear-gradient(110deg, rgba(2, 8, 18, 0.98), rgba(5, 20, 38, 0.9)),
    radial-gradient(circle at 82% 26%, rgba(125, 249, 255, 0.2), transparent 34%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.signals-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(120, 231, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 231, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 72% 36%, #000, transparent 72%);
}

.signals-hero p,
.signals-section .section-heading p,
.signals-type-panel .section-heading p {
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.signals-hero h1 {
  position: relative;
  max-width: 840px;
  margin: 12px 0 16px;
  color: #eef6ff;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.96;
}

.signals-hero span {
  position: relative;
  display: block;
  max-width: 690px;
  color: #b9c8db;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.56;
}

.signals-orbit {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  border: 1px solid rgba(120, 231, 255, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle, rgba(120, 231, 255, 0.24), transparent 36%),
    rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(14px);
}

.signals-orbit i {
  position: absolute;
  border: 1px solid rgba(120, 231, 255, 0.32);
  border-radius: 50%;
  animation: signalPulse 4.8s ease-in-out infinite;
}

.signals-orbit i:nth-child(1) {
  width: 72%;
  height: 72%;
}

.signals-orbit i:nth-child(2) {
  width: 48%;
  height: 48%;
  animation-delay: 0.8s;
}

.signals-orbit i:nth-child(3) {
  width: 24%;
  height: 24%;
  animation-delay: 1.6s;
}

.signals-orbit strong {
  color: #eef6ff;
  font-size: 30px;
  font-weight: 950;
}

.signals-orbit small {
  position: absolute;
  bottom: 86px;
  color: var(--blue-2);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

@keyframes signalPulse {
  0%, 100% {
    opacity: 0.38;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

.signals-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.signals-metrics article,
.signals-featured,
.signals-type-panel,
.signals-row {
  border: 1px solid rgba(120, 231, 255, 0.16);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(18, 35, 60, 0.84), rgba(5, 11, 20, 0.96));
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.18);
}

.signals-metrics article {
  padding: 18px;
}

.signals-metrics strong {
  display: block;
  color: #eef6ff;
  font-size: 32px;
  line-height: 1;
}

.signals-metrics small {
  display: block;
  margin-top: 8px;
  color: #95a8c0;
  font-weight: 800;
}

.signals-command {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 18px;
  margin-top: 18px;
}

.signals-featured,
.signals-type-panel {
  padding: clamp(20px, 4vw, 34px);
}

.signals-featured > span,
.signals-row-main span {
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.signals-featured h2,
.signals-row-main h2 {
  margin: 10px 0;
  color: #eef6ff;
  line-height: 1.05;
}

.signals-featured h2 {
  max-width: 780px;
  font-size: clamp(28px, 4vw, 48px);
}

.signals-featured p,
.signals-row-main p {
  color: #b9c8db;
  line-height: 1.58;
}

.signals-featured dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
}

.signals-featured dl div {
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.signals-featured dt {
  color: #7df9ff;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.signals-featured dd {
  margin: 6px 0 0;
  color: #eef6ff;
  font-weight: 850;
}

.signals-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.signals-actions a,
.signals-row-side a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(120, 231, 255, 0.28);
  border-radius: 999px;
  color: #dff8ff;
  background: rgba(120, 231, 255, 0.1);
  font-size: 12px;
  font-weight: 950;
  padding: 0 14px;
}

.signals-actions a:first-child,
.signals-row-side a {
  color: #04111c;
  background: linear-gradient(135deg, #7df9ff, #38bdf8);
}

.signals-type-grid {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.signals-type-grid article {
  display: grid;
  gap: 7px;
  padding: 15px;
  border: 1px solid rgba(120, 231, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.signals-type-grid span {
  color: var(--blue-2);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.signals-type-grid strong {
  color: #eef6ff;
}

.signals-type-grid small {
  color: #95a8c0;
  line-height: 1.45;
}

.signals-filter-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) auto;
  gap: 18px;
  align-items: start;
  margin-top: 18px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(120, 231, 255, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(18, 35, 60, 0.78), rgba(5, 11, 20, 0.94)),
    radial-gradient(circle at 14% 0%, rgba(120, 231, 255, 0.12), transparent 34%);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.16);
}

.signals-filter-head p {
  margin: 0 0 8px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.signals-filter-head h2 {
  margin: 0;
  color: #eef6ff;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
}

.signals-filter-panel > strong {
  justify-self: end;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(120, 231, 255, 0.22);
  border-radius: 999px;
  padding: 0 14px;
  color: #dff8ff;
  background: rgba(120, 231, 255, 0.1);
  font-size: 12px;
  font-weight: 950;
}

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

.signals-filter-grid div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: flex-start;
  padding: 14px;
  border: 1px solid rgba(120, 231, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.signals-filter-grid span {
  flex: 0 0 100%;
  color: #95a8c0;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.signals-filter-grid button {
  min-height: 34px;
  border: 1px solid rgba(120, 231, 255, 0.18);
  border-radius: 999px;
  color: #dff8ff;
  background: rgba(120, 231, 255, 0.08);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  padding: 0 12px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.signals-filter-grid button:hover {
  transform: translateY(-1px);
  border-color: rgba(120, 231, 255, 0.4);
  box-shadow: 0 10px 26px rgba(45, 212, 191, 0.12);
}

.signals-filter-grid button.is-active {
  color: #04111c;
  border-color: rgba(120, 231, 255, 0.7);
  background: linear-gradient(135deg, #7df9ff, #38bdf8);
  box-shadow: 0 12px 30px rgba(56, 189, 248, 0.18);
}

.signals-section {
  margin-top: 24px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(120, 231, 255, 0.14);
  border-radius: 14px;
  background: rgba(7, 17, 31, 0.62);
}

.signals-feed {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.signals-row {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) 130px;
  gap: 16px;
  align-items: center;
  padding: 18px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.signals-row:hover {
  transform: translateY(-2px);
  border-color: rgba(120, 231, 255, 0.34);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
}

.signals-row-index {
  color: #7df9ff;
  font-size: 18px;
  font-weight: 950;
}

.signals-row-main h2 {
  font-size: clamp(18px, 2vw, 24px);
}

.signals-row-main p {
  margin: 0 0 10px;
  font-size: 14px;
}

.signals-row-main small {
  color: #95a8c0;
  font-weight: 850;
}

.signals-row-side {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.signals-empty {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(120, 231, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.signals-empty strong {
  color: #eef6ff;
  font-size: 20px;
}

.signals-empty span {
  color: #95a8c0;
  font-weight: 800;
}

.signal-impact {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 950;
}

.impact-high {
  color: #04111c;
  background: linear-gradient(135deg, #7df9ff, #2dd4bf);
}

.impact-medium {
  color: #dff8ff;
  background: rgba(47, 140, 255, 0.24);
}

.impact-early {
  color: #d8e4f5;
  background: rgba(148, 163, 184, 0.14);
}

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

.home-compare-grid article {
  padding: 22px;
  border: 1px solid rgba(120, 231, 255, 0.18);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(18, 35, 60, 0.88), rgba(5, 11, 20, 0.96));
}

.home-compare-grid span {
  color: var(--blue-2);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-compare-grid h3 {
  margin: 10px 0 18px;
  color: #eef6ff;
  font-size: 30px;
}

.home-compare-grid dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.home-compare-grid dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.home-compare-grid dt,
.home-compare-grid dd {
  margin: 0;
  font-size: 13px;
}

.home-compare-grid dt {
  color: #8797ad;
}

.home-compare-grid dd {
  color: #e4f2ff;
  font-weight: 900;
  text-align: right;
}

.home-compare-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.home-compare-actions a:last-child {
  color: #eaf6ff;
  border: 1px solid rgba(120, 231, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

body.light-theme .live-stats-strip article,
body.light-theme .live-intelligence-board,
body.light-theme .live-intelligence-feed article,
body.light-theme .robotics-signal-ticker,
body.light-theme .trending-robots-section,
body.light-theme .rscore-command-section,
body.light-theme .home-compare-section,
body.light-theme .leaderboard-hero,
body.light-theme .leaderboard-section,
body.light-theme .leaderboard-table-wrap,
body.light-theme .leaderboard-hero-metrics article,
body.light-theme .trending-robots-grid a,
body.light-theme .home-compare-grid article,
body.light-theme .rscore-command-meter,
body.light-theme .rscore-leaderboard article,
body.light-theme .leaderboard-row:not(.leaderboard-head),
body.light-theme .rscore-snapshot-grid article {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(235, 243, 252, 0.94));
}

body.light-theme .live-stats-strip strong,
body.light-theme .live-intelligence-head h2,
body.light-theme .live-intelligence-feed strong,
body.light-theme .trending-robots-grid strong,
body.light-theme .trending-robots-grid dd,
body.light-theme .rscore-command-main h2,
body.light-theme .rscore-leaderboard strong,
body.light-theme .leaderboard-hero h1,
body.light-theme .leaderboard-hero-metrics strong,
body.light-theme .leaderboard-robot strong,
body.light-theme .leaderboard-score strong,
body.light-theme .rscore-snapshot-grid strong,
body.light-theme .home-compare-grid h3,
body.light-theme .home-compare-grid dd {
  color: #102033;
}

body.light-theme .leaderboard-hero span,
body.light-theme .leaderboard-hero-metrics small,
body.light-theme .leaderboard-row,
body.light-theme .leaderboard-score small,
body.light-theme .leaderboard-robot small {
  color: #526275;
}

body.light-theme .leaderboard-head {
  color: #075985;
  background: rgba(231, 241, 250, 0.96);
}

body.light-theme .signals-hero,
body.light-theme .signals-metrics article,
body.light-theme .signals-featured,
body.light-theme .signals-type-panel,
body.light-theme .signals-section,
body.light-theme .signals-filter-panel,
body.light-theme .signals-row,
body.light-theme .signals-empty {
  border-color: rgba(13, 74, 120, 0.16);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(235, 243, 252, 0.94));
}

body.light-theme .signals-hero h1,
body.light-theme .signals-hero span,
body.light-theme .signals-metrics strong,
body.light-theme .signals-featured h2,
body.light-theme .signals-featured dd,
body.light-theme .signals-filter-head h2,
body.light-theme .signals-row-main h2,
body.light-theme .signals-type-grid strong,
body.light-theme .signals-empty strong {
  color: #102033;
}

body.light-theme .signals-featured p,
body.light-theme .signals-row-main p,
body.light-theme .signals-metrics small,
body.light-theme .signals-row-main small,
body.light-theme .signals-type-grid small,
body.light-theme .signals-filter-grid span,
body.light-theme .signals-empty span {
  color: #526275;
}

body.light-theme .signals-filter-grid div {
  border-color: rgba(13, 74, 120, 0.12);
  background: rgba(255, 255, 255, 0.68);
}

body.light-theme .signals-filter-grid button,
body.light-theme .signals-filter-panel > strong {
  color: #19405c;
  background: rgba(14, 116, 144, 0.08);
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes heroCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes roboticsTicker {
  from {
    transform: translateX(0);
  }

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

@keyframes heroRadarSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes heroPulse {
  0%,
  100% {
    transform: scale(0.8);
    opacity: 0.62;
  }
  50% {
    transform: scale(1.35);
    opacity: 1;
  }
}

@keyframes heroParticleDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.42;
  }
  50% {
    transform: translate3d(18px, -22px, 0);
    opacity: 1;
  }
}

@keyframes heroWirePulse {
  0%,
  100% {
    opacity: 0.34;
  }
  50% {
    opacity: 0.62;
  }
}

@keyframes heroSignalFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes heroScanlines {
  to {
    background-position: 0 72px;
  }
}

.head-shell {
  position: absolute;
  left: 40px;
  top: 34px;
  width: 178px;
  height: 252px;
  background:
    radial-gradient(circle at 35% 28%, #ffffff, #d9e2ed 38%, #9aa8b8 78%),
    linear-gradient(130deg, #eef5fb, #8290a0);
  border-radius: 54% 42% 48% 52% / 34% 48% 52% 66%;
  clip-path: polygon(25% 0, 77% 8%, 92% 37%, 78% 58%, 68% 82%, 43% 94%, 27% 73%, 10% 55%, 5% 24%);
}

.face-panel {
  position: absolute;
  left: 24px;
  top: 95px;
  width: 88px;
  height: 145px;
  background: linear-gradient(180deg, #f8fbff, #9aa9bb);
  border-radius: 80% 38% 40% 70%;
  clip-path: polygon(48% 0, 86% 22%, 80% 64%, 42% 100%, 10% 70%, 11% 25%);
}

.eye {
  position: absolute;
  left: 88px;
  top: 144px;
  width: 18px;
  height: 10px;
  border-radius: 999px;
  background: #07111d;
  box-shadow: 0 0 18px rgba(20, 184, 166, 0.38);
}

.ear-core {
  position: absolute;
  left: 162px;
  top: 66px;
  width: 156px;
  height: 156px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #06101d 0 18%, #a7b3c0 19% 24%, #152234 25% 40%, #c8d0d8 41% 48%, #121a27 49% 100%);
  border: 8px solid #d5dde7;
}

.ear-ring {
  position: absolute;
  border: 2px solid rgba(209, 221, 235, 0.72);
  border-radius: 50%;
}

.ear-ring.r1 {
  left: 146px;
  top: 50px;
  width: 190px;
  height: 190px;
}

.ear-ring.r2 {
  left: 183px;
  top: 86px;
  width: 118px;
  height: 118px;
}

.neck {
  position: absolute;
  left: 178px;
  top: 220px;
  width: 82px;
  height: 140px;
  background: linear-gradient(90deg, #07111d, #25384e, #101a28);
  clip-path: polygon(12% 0, 82% 0, 100% 100%, 0 100%);
}

.filter-panel,
.profile-panel,
.newsletter {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin: 46px 0 22px;
}

.section-heading.compact {
  margin-top: 28px;
}

.section-heading p {
  margin: 0;
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading span {
  max-width: 650px;
  color: #c4cedc;
  line-height: 1.65;
}

.info-section {
  padding-top: 4px;
}

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

.info-grid article,
.feature-story,
.quick-news article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(18, 35, 60, 0.88), rgba(7, 17, 31, 0.94));
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.info-grid article::before,
.feature-story::before,
.quick-news article::before,
.category-grid article::before,
.company-card::before,
.market-panel::before,
.profile-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #14b8a6, #78e7ff, transparent);
  opacity: 0.78;
}

.info-grid article {
  min-height: 250px;
  padding: 24px;
}

.info-grid article > span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 34px;
  color: #cfe2ff;
  background: rgba(20, 184, 166, 0.18);
  border: 1px solid rgba(120, 231, 255, 0.28);
  border-radius: 10px;
  font-weight: 900;
}

.info-grid h3,
.quick-news h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.18;
}

.info-grid p,
.feature-story p {
  margin-bottom: 0;
  color: #c4cedc;
  line-height: 1.62;
}

body.light-theme .section-heading span,
body.light-theme .info-grid p,
body.light-theme .feature-story p,
body.light-theme .company-card p,
body.light-theme .profile-main p,
body.light-theme .newsletter p,
body.light-theme .site-footer p {
  color: #43566c;
}

body.light-theme .info-grid article,
body.light-theme .feature-story,
body.light-theme .quick-news article,
body.light-theme .company-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(235, 243, 252, 0.94));
}

body.light-theme .feature-story {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(235, 243, 252, 0.82)),
    radial-gradient(circle at 88% 25%, rgba(20, 184, 166, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(235, 243, 252, 0.92));
}

.editorial-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 18px;
  margin-top: 22px;
}

.feature-story {
  position: relative;
  min-height: 360px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.98), rgba(7, 17, 31, 0.74)),
    radial-gradient(circle at 88% 25%, rgba(20, 184, 166, 0.34), transparent 34%),
    linear-gradient(145deg, rgba(18, 35, 60, 0.9), rgba(7, 17, 31, 0.94));
}

.feature-story::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 28px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(120, 231, 255, 0.28);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 49%, rgba(120, 231, 255, 0.18) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(120, 231, 255, 0.18) 50%, transparent 51%);
  box-shadow: inset 0 0 34px rgba(20, 184, 166, 0.12);
  opacity: 0.72;
}

.feature-story > p:first-child,
.quick-news span {
  margin: 0 0 12px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-story h2 {
  max-width: 760px;
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.feature-story a {
  width: fit-content;
  margin-top: 22px;
  color: var(--blue-2);
  font-weight: 850;
}

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

.quick-news article {
  min-height: 108px;
  padding: 20px;
}

.quick-news h3 {
  margin-bottom: 0;
}

.category-section {
  margin-top: 42px;
}

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

.category-grid article {
  position: relative;
  overflow: hidden;
  min-height: 315px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(18, 35, 60, 0.88), rgba(7, 17, 31, 0.94));
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.category-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(120, 231, 255, 0.58);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.24);
}

.category-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.category-grid div {
  padding: 18px;
}

.category-grid h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.category-grid p {
  margin: 0;
  color: #c4cedc;
  line-height: 1.55;
}

body.light-theme .category-grid article {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(235, 243, 252, 0.94));
}

body.light-theme .category-grid p {
  color: #43566c;
}

.filter-panel {
  justify-content: space-between;
  gap: 18px;
  padding: 20px 28px;
  margin: 4px 0 20px;
}

.filter-panel label {
  display: grid;
  gap: 8px;
  min-width: 185px;
  color: var(--muted);
  font-size: 13px;
}

.filter-panel select {
  min-height: 40px;
  padding: 0 42px 0 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 6px;
}

.clear-button {
  gap: 9px;
  min-height: 40px;
  padding: 0 18px;
  color: #b8d4ff;
  background: rgba(2, 8, 18, 0.24);
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 6px;
}

.clear-button svg {
  width: 15px;
  height: 15px;
}

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

.company-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 14px;
  min-height: 244px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(18, 35, 60, 0.9), rgba(7, 17, 31, 0.94));
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.company-card:hover,
.company-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(120, 231, 255, 0.62);
  background: linear-gradient(145deg, rgba(22, 49, 84, 0.94), rgba(7, 17, 31, 0.96));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  outline: none;
}

.company-card > img,
.company-logo-letter {
  width: 68px;
  height: 68px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.company-logo-letter {
  display: grid;
  place-items: center;
  color: #d9e8ff;
  background:
    linear-gradient(135deg, rgba(20, 184, 166, 0.26), rgba(120, 231, 255, 0.08)),
    rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(120, 231, 255, 0.22);
  font-weight: 900;
  letter-spacing: 0;
}

.company-card h2 {
  margin: 5px 0 8px;
  font-size: 19px;
  line-height: 1.2;
}

.company-card span,
.profile-main > div > span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  color: #9fc5ff;
  background: var(--chip);
  border-radius: 8px;
  font-size: 13px;
}

.company-card p {
  grid-column: 1 / -1;
  min-height: 70px;
  margin: 2px 0 0;
  color: #c4cedc;
  line-height: 1.5;
}

.company-card footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  color: var(--muted);
}

body.light-theme .company-card span,
body.light-theme .profile-main > div > span {
  color: #0f5ec8;
}

.company-card small {
  padding-right: 12px;
  border-right: 1px solid var(--line);
}

.company-card .details-link {
  margin-left: auto;
  color: var(--blue-2);
  font-size: 13px;
}

.market-section {
  margin-top: 28px;
}

.market-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(2, 8, 18, 0.88), rgba(2, 8, 18, 0.54)),
    radial-gradient(circle at 78% 22%, rgba(120, 231, 255, 0.24), transparent 34%),
    url("assets/robot-lab.png") right center / cover;
  box-shadow: var(--shadow);
}

.market-hero p {
  margin: 0 0 12px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.market-hero h2 {
  max-width: 680px;
  margin: 0 0 14px;
  font-size: clamp(34px, 5.5vw, 64px);
  line-height: 0.98;
}

.market-hero span {
  display: block;
  max-width: 650px;
  color: #c4cedc;
  font-size: 17px;
  line-height: 1.65;
}

.market-terminal-card {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(120, 231, 255, 0.28);
  border-radius: 8px;
  background: rgba(3, 10, 20, 0.72);
  backdrop-filter: blur(16px);
}

.market-terminal-card span {
  color: #5eead4;
  font-size: 11px;
  font-weight: 950;
}

.market-terminal-card strong {
  font-size: 20px;
  line-height: 1.2;
}

.market-terminal-card small {
  color: var(--muted);
}

.market-disclaimer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin: -4px 0 18px;
  padding: 14px 16px;
  border: 1px solid rgba(120, 231, 255, 0.28);
  border-radius: 8px;
  background: rgba(20, 184, 166, 0.09);
  color: var(--muted);
}

.market-disclaimer strong {
  color: var(--text);
}

.market-intelligence-panel {
  overflow: hidden;
  border: 1px solid rgba(120, 231, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(12, 21, 35, 0.96), rgba(5, 11, 20, 0.98));
  box-shadow: var(--shadow);
}

.market-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.market-toolbar strong {
  font-size: 18px;
}

.market-toolbar div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.market-toolbar span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 6px;
  color: #d8e4f5;
  font-size: 13px;
  font-weight: 850;
  padding: 0 14px;
}

.market-toolbar span:first-child,
.market-toolbar span.is-active {
  border-color: rgba(120, 231, 255, 0.48);
  background: rgba(120, 231, 255, 0.16);
}

.market-table-wrap {
  overflow-x: auto;
}

.watchlist-score-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  min-width: 920px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(148, 163, 184, 0.12);
}

.watchlist-score-row article {
  padding: 16px 18px;
  background: rgba(6, 15, 28, 0.92);
}

.watchlist-score-row strong {
  display: block;
  margin-bottom: 6px;
  color: #eef6ff;
  font-size: 14px;
}

.watchlist-score-row span {
  color: #93a4bb;
  font-size: 13px;
  line-height: 1.45;
}

.market-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

.market-table th,
.market-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  text-align: left;
  vertical-align: middle;
}

.market-table th {
  color: #7f8ea6;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.market-table td {
  color: #d8e4f5;
  font-size: 14px;
}

.market-table td:first-child {
  color: #7f8ea6;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.market-table td:nth-child(2) {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}

.market-table strong,
.market-table small {
  display: block;
}

.market-table small {
  margin-top: 4px;
  color: #7f8ea6;
}

.market-table a {
  color: var(--blue-2);
  font-weight: 850;
  white-space: nowrap;
}

.market-logo {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: white;
  font-size: 13px;
  font-weight: 950;
}

.tesla-mark { background: #e31b23; }
.nvidia-mark { background: #76b900; color: #061107; }
.alphabet-mark { background: #2563eb; }
.figure-mark { background: #111827; border: 1px solid rgba(255,255,255,0.2); }
.unitree-mark { background: #0ea5e9; }
.boston-mark { background: #f8fafc; color: #0f172a; }
.openai-mark { background: #111827; border: 1px solid rgba(255,255,255,0.2); }
.meta-mark { background: #2563eb; }
.amazon-mark { background: #f59e0b; color: #111827; }
.apple-mark { background: #f8fafc; color: #111827; }
.generic-mark { background: linear-gradient(135deg, #0f2d54, #14b8a6); }

.signal-pill {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  padding: 0 10px;
  white-space: nowrap;
}

.signal-pill.public {
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #86efac;
  background: rgba(34, 197, 94, 0.1);
}

.signal-pill.private {
  border: 1px solid rgba(120, 231, 255, 0.36);
  color: #bfdbfe;
  background: rgba(120, 231, 255, 0.1);
}

.signal-pill.robot-price {
  border: 1px solid rgba(94, 234, 212, 0.34);
  color: #99f6e4;
  background: rgba(20, 184, 166, 0.1);
}

.market-summary-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.market-summary-strip article {
  padding: 18px;
  border-right: 1px solid rgba(148, 163, 184, 0.12);
}

.market-summary-strip article:last-child {
  border-right: 0;
}

.market-summary-strip strong {
  display: block;
  margin-bottom: 4px;
  font-size: 24px;
}

.market-summary-strip span {
  color: var(--muted);
  font-size: 13px;
}

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

.catalog-hero {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  padding: clamp(34px, 6vw, 70px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(2, 8, 18, 0.92), rgba(2, 8, 18, 0.64)),
    radial-gradient(circle at 80% 18%, rgba(120, 231, 255, 0.24), transparent 34%),
    url("assets/robot-lab.png") right center / cover;
  box-shadow: var(--shadow);
}

.catalog-hero p {
  margin: 0 0 12px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.catalog-hero h1 {
  max-width: 820px;
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
}

.catalog-hero > span {
  display: block;
  max-width: 720px;
  color: #c4cedc;
  font-size: 15px;
  line-height: 1.62;
}

.catalog-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 8px;
  background: rgba(148, 163, 184, 0.14);
}

.catalog-metrics article {
  padding: 16px;
  background: rgba(5, 13, 24, 0.82);
}

.catalog-metrics strong {
  display: block;
  margin-bottom: 5px;
  font-size: 22px;
}

.catalog-metrics small {
  color: #9fb0c6;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.catalog-sidebar {
  position: sticky;
  top: 92px;
  align-self: start;
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 17, 31, 0.86);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.catalog-sidebar label {
  display: grid;
  gap: 8px;
  color: #d8e4f5;
  font-size: 13px;
  font-weight: 850;
}

.catalog-sidebar input {
  min-height: 42px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 7px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  padding: 0 12px;
}

.catalog-filter-group {
  display: grid;
  gap: 8px;
}

.advanced-filter-group {
  display: grid;
  gap: 10px;
  padding-top: 2px;
}

.advanced-filter-group label {
  display: grid;
  gap: 7px;
}

.advanced-filter-group select {
  min-height: 38px;
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 7px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  padding: 0 10px;
}

.filter-check {
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  color: #d8e4f5;
  font-size: 12px;
}

.filter-check input {
  accent-color: var(--blue);
}

.catalog-filter-group button {
  min-height: 38px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 7px;
  color: #d8e4f5;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  font-weight: 820;
  text-align: left;
  padding: 0 12px;
}

.catalog-filter-group button.is-active {
  border-color: rgba(120, 231, 255, 0.52);
  background: rgba(120, 231, 255, 0.16);
}

.catalog-results-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 17, 31, 0.72);
}

.catalog-results-head span {
  color: var(--muted);
}

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

.catalog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(18, 35, 60, 0.9), rgba(7, 17, 31, 0.94));
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.catalog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(120, 231, 255, 0.38);
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.22);
}

.catalog-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin: 0;
  background: rgba(255, 255, 255, 0.05);
}

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

.catalog-visual figcaption,
.profile-visual figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(116, 199, 255, 0.42);
  border-radius: 50%;
  color: #eaf6ff;
  background: rgba(2, 8, 18, 0.76);
  backdrop-filter: blur(12px);
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
}

.catalog-visual figcaption small,
.profile-visual figcaption small {
  display: block;
  margin-top: 3px;
  color: #a8c6e8;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.robot-rank-chip {
  position: absolute;
  left: 14px;
  top: 14px;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(125, 249, 255, 0.36);
  border-radius: 999px;
  color: #dff8ff;
  background: rgba(3, 12, 24, 0.72);
  box-shadow: 0 0 22px rgba(47, 140, 255, 0.16);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 950;
}

.catalog-visual-empty {
  display: grid;
  place-items: center;
}

.catalog-visual-empty span,
.company-avatar {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(120, 231, 255, 0.3);
  border-radius: 14px;
  color: #d9e8ff;
  background: rgba(255, 255, 255, 0.07);
  font-size: 24px;
  font-weight: 950;
}

.catalog-card-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.catalog-card h2 {
  margin: 0;
  font-size: 21px;
  line-height: 1.14;
}

.catalog-card p {
  margin: 0;
  color: #c4cedc;
  font-size: 14px;
  line-height: 1.5;
}

.use-case-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.use-case-chip-row a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(120, 231, 255, 0.26);
  border-radius: 999px;
  color: #d9e8ff;
  background: rgba(120, 231, 255, 0.1);
  font-size: 12px;
  padding: 0 10px;
}

.quality-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.quality-chip-row span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 999px;
  color: #d9e8ff;
  background: rgba(255, 255, 255, 0.045);
  font-size: 11px;
  font-weight: 850;
  padding: 0 9px;
}

.catalog-card dl {
  display: grid;
  gap: 7px;
  margin: 0;
}

.catalog-card dl div {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 10px;
  color: #c4cedc;
  font-size: 13px;
  line-height: 1.42;
}

.catalog-card dt {
  color: #d9e8ff;
  font-weight: 850;
}

.catalog-card dd {
  margin: 0;
}

.catalog-card a,
.signal-card a {
  color: var(--blue-2);
  font-weight: 850;
}

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

.company-catalog-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  padding: 18px;
}

.company-catalog-card .catalog-card-body {
  padding: 0;
}

.market-page-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.catalog-section {
  margin-top: 34px;
}

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

.home-intelligence-grid,
.signal-update-grid,
.buyer-guide-grid,
.profile-stack-grid,
.company-signal-grid,
.compare-summary-grid,
.data-quality-grid,
.tr-guide-grid,
.compare-preset-grid,
.faq-grid {
  display: grid;
  gap: 12px;
}

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

.signal-update-grid,
.buyer-guide-grid,
.profile-stack-grid,
.data-quality-grid,
.tr-guide-grid,
.compare-preset-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.company-signal-grid,
.compare-summary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
}

.home-intelligence-grid article,
.signal-update-card,
.buyer-guide-grid article,
.profile-stack-grid article,
.company-signal-grid article,
.compare-summary-grid article,
.data-quality-grid article,
.tr-guide-grid a,
.compare-preset-grid a,
.faq-grid details {
  display: grid;
  gap: 9px;
  min-height: 142px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(18, 35, 60, 0.9), rgba(7, 17, 31, 0.94));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
}

.home-intelligence-grid strong {
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.home-intelligence-grid span,
.signal-update-card span,
.buyer-guide-grid span,
.profile-stack-grid span,
.company-signal-grid span,
.compare-summary-grid span,
.data-quality-grid span,
.tr-guide-grid span,
.compare-preset-grid span {
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.home-intelligence-grid small,
.signal-update-card small,
.buyer-guide-grid small,
.profile-stack-grid small,
.company-signal-grid small,
.data-quality-grid small,
.tr-guide-grid small {
  color: #c4cedc;
  line-height: 1.45;
}

.signal-update-card strong,
.buyer-guide-grid strong,
.profile-stack-grid strong,
.company-signal-grid strong,
.compare-summary-grid strong,
.data-quality-grid strong,
.tr-guide-grid strong,
.compare-preset-grid strong,
.faq-grid summary {
  color: #eef6ff;
  font-size: 16px;
  line-height: 1.25;
}

.faq-grid details {
  min-height: auto;
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-grid p {
  margin: 0;
  color: #c4cedc;
  line-height: 1.55;
}

.featured-robot-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(18, 35, 60, 0.92), rgba(7, 17, 31, 0.96));
  box-shadow: var(--shadow);
}

.robot-week-section {
  position: relative;
}

.robot-week-section .section-heading {
  margin-bottom: 18px;
}

.robot-week-card {
  position: relative;
  border-color: rgba(120, 231, 255, 0.24);
  background:
    radial-gradient(circle at 78% 14%, rgba(120, 231, 255, 0.16), transparent 32%),
    linear-gradient(145deg, rgba(18, 35, 60, 0.92), rgba(3, 8, 17, 0.98));
}

.robot-week-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(120, 231, 255, 0.09), transparent),
    linear-gradient(rgba(120, 231, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 100%, 100% 34px;
  opacity: 0.72;
}

.featured-robot-card figure {
  position: relative;
  min-height: 320px;
  margin: 0;
  background: rgba(255, 255, 255, 0.05);
}

.featured-robot-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.featured-robot-card figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(116, 199, 255, 0.42);
  border-radius: 50%;
  color: #eaf6ff;
  background: rgba(2, 8, 18, 0.76);
  backdrop-filter: blur(12px);
  font-size: 24px;
  font-weight: 950;
}

.featured-robot-card figcaption small {
  display: block;
  margin-top: 3px;
  color: #a8c6e8;
  font-size: 9px;
  text-transform: uppercase;
}

.featured-robot-card article {
  position: relative;
  display: grid;
  align-content: center;
  gap: 13px;
  padding: clamp(24px, 4vw, 44px);
  z-index: 1;
}

.featured-robot-card article > span {
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.featured-robot-card h3 {
  margin: 0;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.02;
}

.featured-robot-card p {
  margin: 0;
  color: #c4cedc;
  line-height: 1.62;
}

.robot-week-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.robot-week-grid div {
  min-width: 0;
  padding: 13px;
  border: 1px solid rgba(120, 231, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.robot-week-grid strong {
  display: block;
  overflow-wrap: anywhere;
  color: #eef6ff;
  font-size: 14px;
  line-height: 1.2;
}

.robot-week-grid small {
  display: block;
  margin-top: 6px;
  color: #8fa3bc;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.robot-week-bars {
  max-width: 520px;
  margin-top: 4px;
}

.featured-robot-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.featured-robot-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(120, 231, 255, 0.28);
  border-radius: 7px;
  color: #eaf6ff;
  background: rgba(20, 184, 166, 0.12);
  font-weight: 900;
  padding: 0 13px;
}

.humanoid-preview-section {
  position: relative;
  overflow: hidden;
  margin-top: 34px;
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid rgba(120, 231, 255, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 14% 10%, rgba(56, 189, 248, 0.18), transparent 30%),
    radial-gradient(circle at 90% 28%, rgba(20, 184, 166, 0.16), transparent 28%),
    linear-gradient(145deg, rgba(5, 11, 20, 0.98), rgba(8, 23, 42, 0.94));
  box-shadow: var(--shadow);
}

.humanoid-preview-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(120, 231, 255, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(120, 231, 255, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, #000, transparent 92%);
  pointer-events: none;
}

.humanoid-preview-section > * {
  position: relative;
  z-index: 1;
}

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

.humanoid-preview-card {
  overflow: hidden;
  border: 1px solid rgba(120, 231, 255, 0.2);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(18, 35, 60, 0.88), rgba(5, 11, 20, 0.96));
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.humanoid-preview-card:hover {
  transform: translateY(-5px);
  border-color: rgba(120, 231, 255, 0.62);
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.32), 0 0 38px rgba(56, 189, 248, 0.1);
}

.humanoid-preview-card figure {
  position: relative;
  height: 250px;
  margin: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(56, 189, 248, 0.18), transparent 38%),
    rgba(255, 255, 255, 0.04);
}

.humanoid-preview-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.humanoid-preview-card figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(120, 231, 255, 0.45);
  border-radius: 50%;
  color: #eef6ff;
  background: rgba(2, 8, 18, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 0 28px rgba(56, 189, 248, 0.18);
  font-size: 23px;
  font-weight: 950;
}

.humanoid-preview-card figcaption small {
  display: block;
  color: #9fc5ff;
  font-size: 8px;
  text-transform: uppercase;
}

.humanoid-preview-card > div {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.humanoid-preview-card span {
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.humanoid-preview-card h3 {
  margin: 0;
  color: #eef6ff;
  font-size: 28px;
  line-height: 1;
}

.humanoid-preview-card p {
  min-height: 46px;
  margin: 0;
  color: #c4cedc;
  line-height: 1.48;
}

.humanoid-preview-card dl {
  display: grid;
  gap: 8px;
  margin: 2px 0 0;
}

.humanoid-preview-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.13);
}

.humanoid-preview-card dt,
.humanoid-preview-card dd {
  margin: 0;
  font-size: 13px;
}

.humanoid-preview-card dt {
  color: #7f95b2;
}

.humanoid-preview-card dd {
  color: #e4f2ff;
  text-align: right;
}

.humanoid-preview-card a,
.humanoid-preview-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(120, 231, 255, 0.34);
  border-radius: 7px;
  color: #001018;
  background: linear-gradient(135deg, #78e7ff, #2dd4bf);
  box-shadow: 0 18px 42px rgba(45, 212, 191, 0.18);
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.humanoid-preview-card a:hover,
.humanoid-preview-actions a:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 24px 58px rgba(45, 212, 191, 0.26);
}

.humanoid-preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.humanoid-preview-actions a {
  min-width: 180px;
  padding: 0 18px;
}

.humanoid-preview-actions a:last-child {
  color: #eaf6ff;
  background: rgba(255, 255, 255, 0.06);
}

body.light-theme .humanoid-preview-section,
body.light-theme .humanoid-preview-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(235, 243, 252, 0.94));
}

body.light-theme .humanoid-preview-card h3,
body.light-theme .humanoid-preview-card dd {
  color: #102033;
}

body.light-theme .humanoid-preview-card p,
body.light-theme .humanoid-preview-card dt {
  color: #43566c;
}

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

.signal-card {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(18, 35, 60, 0.9), rgba(7, 17, 31, 0.94));
}

.signal-card strong {
  font-size: 19px;
}

.signal-card span {
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 900;
}

.signal-card small {
  color: #c4cedc;
  line-height: 1.45;
}

.full-compare-wrap {
  margin-top: 22px;
}

.full-compare-table td:first-child strong,
.full-compare-table td:first-child small {
  display: block;
}

.full-compare-table td:first-child small {
  margin-top: 5px;
  color: var(--muted);
}

.mini-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 52px;
}

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

.quick-path-section {
  margin-top: 24px;
}

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

.quick-path-grid a {
  display: grid;
  gap: 8px;
  min-height: 116px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(18, 35, 60, 0.9), rgba(7, 17, 31, 0.94));
}

.quick-path-grid strong {
  font-size: 18px;
}

.quick-path-grid span {
  color: #c4cedc;
  line-height: 1.45;
}

.profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 28px;
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 76% 20%, rgba(120, 231, 255, 0.22), transparent 32%),
    linear-gradient(145deg, rgba(18, 35, 60, 0.92), rgba(7, 17, 31, 0.96));
  box-shadow: var(--shadow);
}

.profile-hero p {
  margin: 0 0 12px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.profile-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(38px, 6vw, 70px);
  line-height: 1;
}

.profile-hero > div > span {
  display: block;
  max-width: 720px;
  color: #c4cedc;
  font-size: 16px;
  line-height: 1.62;
}

.profile-visual {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  margin: 0;
  border: 1px solid rgba(120, 231, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

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

.profile-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.compact-action-row {
  margin: 0 0 14px;
}

.profile-action-row a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(120, 231, 255, 0.28);
  border-radius: 7px;
  color: #eaf6ff;
  background: rgba(120, 231, 255, 0.12);
  font-weight: 900;
  padding: 0 14px;
}

.profile-intel-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 8px;
  background: rgba(148, 163, 184, 0.12);
}

.profile-intel-strip article {
  display: grid;
  gap: 6px;
  padding: 18px;
  background: rgba(7, 17, 31, 0.88);
}

.profile-intel-strip span {
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.profile-intel-strip strong {
  font-size: 16px;
  line-height: 1.2;
}

.company-profile-mark {
  display: grid;
  place-items: center;
  min-height: 360px;
  border: 1px solid rgba(120, 231, 255, 0.24);
  border-radius: 8px;
  color: #d9e8ff;
  background:
    radial-gradient(circle at 70% 22%, rgba(120, 231, 255, 0.28), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(5, 13, 24, 0.7));
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 950;
}

.profile-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 20px;
  margin-top: 24px;
}

.profile-facts {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(18, 35, 60, 0.9), rgba(7, 17, 31, 0.94));
}

.profile-facts h2 {
  margin-top: 0;
}

.profile-facts dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.profile-facts dl div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 12px;
}

.profile-facts dt {
  color: #d9e8ff;
  font-weight: 850;
}

.profile-facts dd {
  margin: 0;
  color: #c4cedc;
}

.score-big {
  display: flex;
  align-items: end;
  gap: 4px;
  color: #eaf6ff;
  font-size: 58px;
  line-height: 0.9;
}

.score-big small {
  color: var(--muted);
  font-size: 20px;
}

.score-label {
  display: inline-flex;
  width: fit-content;
  margin: 12px 0 16px;
  border: 1px solid rgba(116, 199, 255, 0.28);
  border-radius: 999px;
  color: #d9e8ff;
  background: rgba(120, 231, 255, 0.12);
  font-size: 12px;
  font-weight: 950;
  padding: 7px 10px;
  text-transform: uppercase;
}

.capability-list {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.capability-list div {
  display: grid;
  gap: 7px;
}

.capability-list span {
  color: #c4cedc;
  font-size: 13px;
  font-weight: 850;
}

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

.use-case-profile-grid a {
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(18, 35, 60, 0.9), rgba(7, 17, 31, 0.94));
}

.use-case-profile-grid span,
.theater-card span {
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.use-case-profile-grid strong {
  font-size: 16px;
  line-height: 1.25;
}

.use-case-profile-grid small {
  color: #c4cedc;
  line-height: 1.45;
}

.profile-media-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(18, 35, 60, 0.9), rgba(7, 17, 31, 0.94));
}

.profile-media-card img,
.profile-media-card > div {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.06);
}

.profile-media-card > div {
  display: grid;
  place-items: center;
  color: #d9e8ff;
  font-size: 48px;
  font-weight: 950;
}

.profile-media-video {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 300px;
  background: #020812;
}

.profile-media-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.profile-media-card article {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(22px, 4vw, 42px);
}

.profile-media-card span {
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.profile-media-card h3 {
  margin: 0;
  font-size: clamp(24px, 3.3vw, 38px);
  line-height: 1.05;
}

.profile-media-card p {
  margin: 0;
  color: #c4cedc;
  line-height: 1.6;
}

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

.price-column {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 17, 31, 0.86);
}

.price-column-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.price-column-head span {
  color: var(--muted);
  font-size: 13px;
}

.price-card {
  display: grid;
  gap: 7px;
  padding: 16px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.price-card strong {
  font-size: 18px;
}

.price-card span {
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 850;
}

.price-card p,
.price-card small {
  margin: 0;
  color: #c4cedc;
  line-height: 1.42;
}

.compare-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.compare-picker label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  color: #d8e4f5;
  background: rgba(7, 17, 31, 0.72);
  cursor: pointer;
  padding: 0 13px;
}

.compare-picker input {
  accent-color: var(--blue);
}

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

.robot-video-player {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(18, 35, 60, 0.92), rgba(7, 17, 31, 0.96));
  box-shadow: var(--shadow);
}

.video-player-frame {
  position: relative;
  min-height: 360px;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 70% 24%, rgba(120, 231, 255, 0.16), transparent 34%),
    #05060f;
}

.video-player-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-loading,
.video-fallback-panel {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #d9e8ff;
  background: rgba(5, 6, 15, 0.72);
  font-weight: 900;
}

.video-fallback-panel {
  overflow: hidden;
}

.video-fallback-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
}

.video-fallback-panel span,
.video-fallback-panel strong {
  position: absolute;
  z-index: 1;
  padding: 10px 12px;
  border: 1px solid rgba(120, 231, 255, 0.28);
  border-radius: 999px;
  background: rgba(5, 6, 15, 0.74);
}

.video-player-info {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(22px, 4vw, 36px);
}

.video-player-info span {
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.video-player-info h2 {
  margin: 0;
  font-size: clamp(26px, 3.6vw, 42px);
  line-height: 1.02;
}

.video-player-info p {
  margin: 0;
  color: #c4cedc;
  line-height: 1.62;
}

.video-player-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.video-theater-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(2, minmax(0, 0.82fr));
  gap: 12px;
}

.theater-card {
  position: relative;
  display: grid;
  align-content: end;
  overflow: hidden;
  min-height: 230px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  background: rgba(7, 17, 31, 0.86);
  cursor: pointer;
  text-align: left;
}

.theater-card.is-active {
  border-color: rgba(120, 231, 255, 0.52);
  box-shadow: 0 0 0 1px rgba(20, 184, 166, 0.2), 0 24px 60px rgba(0, 0, 0, 0.24);
}

.theater-card.is-featured {
  grid-row: span 2;
  min-height: 472px;
}

.theater-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(2, 8, 18, 0.08), rgba(2, 8, 18, 0.82));
}

.theater-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.theater-card span,
.theater-card strong,
.theater-card small {
  position: relative;
  z-index: 1;
}

.theater-card strong {
  margin-top: 6px;
  color: #fff;
  font-size: 23px;
}

.theater-card small {
  margin-top: 8px;
  color: #d4dfef;
  line-height: 1.45;
}

.use-case-hero {
  background:
    linear-gradient(90deg, rgba(2, 8, 18, 0.94), rgba(2, 8, 18, 0.66)),
    radial-gradient(circle at 80% 18%, rgba(116, 199, 255, 0.2), transparent 34%),
    url("assets/robot-lab.png") right center / cover;
}

.use-case-board {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.use-case-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(18, 35, 60, 0.9), rgba(7, 17, 31, 0.94));
}

.use-case-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.use-case-panel-head span {
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.use-case-panel-head h2 {
  margin: 6px 0 8px;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.04;
}

.use-case-panel-head p {
  max-width: 780px;
  margin: 0;
  color: #c4cedc;
  line-height: 1.55;
}

.use-case-panel-head strong {
  display: grid;
  place-items: center;
  flex: 0 0 96px;
  height: 96px;
  border: 1px solid rgba(116, 199, 255, 0.28);
  border-radius: 50%;
  color: #eaf6ff;
  background: rgba(120, 231, 255, 0.12);
  font-size: 26px;
}

.use-case-panel-head small {
  display: block;
  color: #a8c6e8;
  font-size: 10px;
  text-transform: uppercase;
}

.buyer-question {
  margin-bottom: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(120, 231, 255, 0.22);
  border-radius: 8px;
  color: #d9e8ff;
  background: rgba(120, 231, 255, 0.1);
  font-weight: 850;
}

.buyer-playbook {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.buyer-playbook span {
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.buyer-playbook strong {
  color: #d9e8ff;
  font-size: 14px;
  line-height: 1.45;
}

.use-case-robot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.use-case-robot-grid a {
  display: grid;
  gap: 7px;
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.use-case-robot-grid span {
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 950;
}

.use-case-robot-grid strong {
  color: #fff;
  font-size: 16px;
}

.use-case-robot-grid small,
.empty-note {
  color: #c4cedc;
  line-height: 1.42;
}

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

.linked-company-row a {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  color: #d9e8ff;
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 850;
  padding: 8px 10px;
}

.market-panel {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(18, 35, 60, 0.9), rgba(7, 17, 31, 0.94));
  box-shadow: var(--shadow);
}

.panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.panel-head h3 {
  margin: 0;
  font-size: 22px;
}

.panel-head span {
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

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

.finance-grid article,
.robot-price-list article {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.finance-grid article {
  padding: 15px;
}

.finance-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 900;
}

.finance-grid h4,
.robot-price-list h4 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.2;
}

.finance-grid strong {
  display: block;
  margin-bottom: 5px;
  font-size: 24px;
}

.finance-grid small,
.robot-price-list span,
.private-list {
  color: var(--muted);
}

.finance-grid a,
.robot-price-list a {
  display: inline-block;
  margin-top: 14px;
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 800;
}

.private-list {
  margin-top: 16px;
  padding: 14px;
  border: 1px dashed rgba(148, 163, 184, 0.26);
  border-radius: 8px;
  line-height: 1.55;
}

.private-list span {
  display: block;
  margin-bottom: 6px;
  color: #d9e8ff;
  font-weight: 850;
}

.private-list p {
  margin: 0;
}

.robot-price-list {
  display: grid;
  gap: 10px;
}

.robot-price-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
}

.robot-price-list h4 {
  margin-bottom: 4px;
}

.robot-price-list strong {
  font-size: 17px;
  white-space: nowrap;
}

.robot-price-list a {
  margin-top: 0;
  white-space: nowrap;
}

body.light-theme .market-panel {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(235, 243, 252, 0.94));
}

body.light-theme .market-hero {
  background:
    linear-gradient(90deg, rgba(247, 251, 255, 0.94), rgba(247, 251, 255, 0.62)),
    radial-gradient(circle at 78% 22%, rgba(120, 231, 255, 0.18), transparent 34%),
    url("assets/robot-lab.png") right center / cover;
}

body.light-theme .market-hero span {
  color: #43566c;
}

body.light-theme .market-terminal-card,
body.light-theme .market-intelligence-panel {
  background: rgba(255, 255, 255, 0.84);
}

body.light-theme .compare-table-wrap {
  background: rgba(255, 255, 255, 0.88);
}

body.light-theme .market-terminal-card span {
  color: #0f766e;
}

body.light-theme .market-toolbar,
body.light-theme .compare-table th,
body.light-theme .compare-table td,
body.light-theme .market-table th,
body.light-theme .market-table td,
body.light-theme .market-summary-strip {
  border-color: rgba(42, 63, 92, 0.14);
}

body.light-theme .market-toolbar span,
body.light-theme .compare-table td,
body.light-theme .market-table td {
  color: #24364b;
}

body.light-theme .compare-table th,
body.light-theme .market-table small,
body.light-theme .market-table td:first-child,
body.light-theme .market-summary-strip span {
  color: #66788d;
}

body.light-theme .watchlist-score-row {
  background: rgba(42, 63, 92, 0.14);
}

body.light-theme .watchlist-score-row article {
  background: rgba(255, 255, 255, 0.78);
}

body.light-theme .watchlist-score-row strong {
  color: #17304f;
}

body.light-theme .watchlist-score-row span {
  color: #66788d;
}

body.light-theme .finance-grid article,
body.light-theme .robot-price-list article {
  background: rgba(255, 255, 255, 0.66);
}

body.light-theme .private-list span {
  color: #17304f;
}

.no-results {
  margin: 20px 0 0;
  padding: 18px 20px;
  color: #c8d7eb;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 29, 48, 0.72);
  text-align: center;
}

.load-more {
  justify-content: center;
  padding: 26px 0 22px;
}

.load-more button {
  min-width: 270px;
  min-height: 44px;
  color: var(--text);
  background: rgba(4, 12, 24, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.42);
  border-radius: 6px;
}

.load-more span {
  margin-left: 12px;
  color: var(--muted);
}

.profile-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 235px 225px;
  gap: 20px;
  padding: 24px 28px 28px;
  margin-bottom: 20px;
}

.back-link {
  grid-column: 1 / -1;
  color: var(--blue-2);
  font-size: 13px;
}

.profile-main {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 24px;
}

.profile-main > img {
  width: 124px;
  height: 124px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.52);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.profile-main h2 {
  margin: 0 0 8px;
  font-size: 27px;
}

.profile-main p {
  margin: 18px 0;
  color: #c4cedc;
  line-height: 1.58;
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.facts div {
  display: grid;
  gap: 3px;
}

.facts strong {
  font-size: 14px;
}

.facts span {
  color: var(--soft);
  font-size: 12px;
}

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

.chips span {
  padding: 8px 14px;
  color: #c5d7f2;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  font-size: 13px;
}

.product-panel,
.similar-panel {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

body.light-theme .product-panel,
body.light-theme .similar-panel {
  background: rgba(255, 255, 255, 0.62);
}

.product-panel h3,
.similar-panel h3,
.site-footer h3 {
  margin: 0 0 16px;
  font-size: 16px;
}

.product-panel ul,
.similar-panel ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-panel li,
.similar-panel li {
  display: flex;
  align-items: center;
  gap: 11px;
}

.product-panel li span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: rgba(20, 184, 166, 0.22);
  color: #c8dcff;
}

.product-panel strong {
  display: block;
  font-size: 13px;
}

.product-panel small {
  display: block;
  color: var(--soft);
  font-size: 12px;
}

.similar-panel img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.similar-panel a {
  display: inline-block;
  margin-top: 18px;
  color: var(--blue-2);
}

.newsletter {
  display: grid;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 120px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
  padding: clamp(24px, 5vw, 44px);
  margin: 28px 0 34px;
  border: 1px solid rgba(120, 231, 255, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 18%, rgba(56, 189, 248, 0.26), transparent 34%),
    radial-gradient(circle at 84% 82%, rgba(20, 184, 166, 0.2), transparent 32%),
    linear-gradient(135deg, rgba(5, 11, 20, 0.98), rgba(8, 23, 42, 0.94));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(120, 231, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(120, 231, 255, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000, transparent 76%);
  pointer-events: none;
}

.newsletter-copy,
.newsletter-panel {
  position: relative;
  z-index: 1;
}

.newsletter-copy {
  display: grid;
  gap: 12px;
  max-width: 690px;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 22px;
  margin: 24px 0 20px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(17, 29, 48, 0.94), rgba(17, 29, 48, 0.74)),
    url("assets/original-visuals/data-constellation.svg") center / cover;
  box-shadow: var(--shadow);
}

.trust-copy p:first-child {
  margin-bottom: 12px;
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.08;
}

.trust-copy p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: #c4cedc;
  line-height: 1.65;
}

.trust-grid {
  display: grid;
  gap: 12px;
}

.trust-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(2, 8, 18, 0.34);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  margin-bottom: 8px;
  font-size: 17px;
}

.trust-grid span {
  color: #c4cedc;
  line-height: 1.55;
}

body.light-theme .trust-section {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(235, 243, 252, 0.78)),
    url("assets/original-visuals/data-constellation.svg") center / cover;
}

body.light-theme .trust-copy p:last-child,
body.light-theme .trust-grid span {
  color: #43566c;
}

body.light-theme .trust-grid article {
  background: rgba(255, 255, 255, 0.62);
}

.mail-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #d9e8ff;
  background: rgba(56, 189, 248, 0.14);
  border: 1px solid rgba(120, 231, 255, 0.36);
  border-radius: 14px;
  box-shadow: 0 0 32px rgba(56, 189, 248, 0.18);
}

.mail-icon svg {
  width: 30px;
  height: 30px;
}

.newsletter-copy > p {
  margin: 0;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.newsletter h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
  letter-spacing: 0;
}

.newsletter-copy > span {
  margin: 0;
  color: #c4cedc;
  line-height: 1.62;
  font-size: 16px;
}

.newsletter-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(120, 231, 255, 0.18);
  border-radius: 8px;
  background: rgba(2, 8, 18, 0.46);
  backdrop-filter: blur(18px);
}

.newsletter form {
  display: grid;
  gap: 10px;
  position: relative;
}

.beehiiv-shell {
  min-height: 120px;
}

.beehiiv-embed-frame {
  width: 100%;
  min-height: 230px;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.newsletter-direct {
  display: grid;
  gap: 12px;
  align-content: center;
  padding: 20px;
  border: 1px solid rgba(120, 231, 255, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(120, 231, 255, 0.15), transparent 34%),
    rgba(2, 8, 18, 0.5);
}

.newsletter-direct span {
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.newsletter-direct strong {
  color: #f4fbff;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.08;
}

.newsletter-direct p {
  margin: 0;
  color: #9fb0c8;
  line-height: 1.58;
}

.newsletter-direct-form {
  display: grid;
  gap: 10px;
}

.newsletter-direct-form small {
  color: #9fb0c8;
  font-size: 12px;
  font-weight: 800;
}

.newsletter-direct-form small[data-state="success"] {
  color: #7df9ff;
}

.newsletter-direct-form small[data-state="error"] {
  color: #fda4af;
}

.newsletter-direct-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.newsletter-direct a,
.newsletter-direct button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0 22px;
  border: 1px solid rgba(120, 231, 255, 0.46);
  border-radius: 999px;
  color: #001018;
  background: linear-gradient(135deg, #78e7ff, #2dd4bf);
  box-shadow: 0 18px 42px rgba(45, 212, 191, 0.18);
  font-weight: 950;
  cursor: pointer;
}

.newsletter-direct button {
  min-width: 154px;
  white-space: nowrap;
}

.newsletter label {
  color: #9fc5ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.newsletter-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.newsletter input {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  color: var(--text);
  background: rgba(2, 8, 18, 0.62);
  border: 1px solid rgba(120, 231, 255, 0.28);
  border-radius: 7px;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.newsletter input:focus {
  border-color: rgba(120, 231, 255, 0.72);
  background: rgba(2, 8, 18, 0.82);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.12);
}

.newsletter button {
  position: static;
  min-width: 126px;
  min-height: 56px;
  border: 1px solid rgba(120, 231, 255, 0.48);
  border-radius: 7px;
  color: #001018;
  background: linear-gradient(135deg, #78e7ff, #2dd4bf);
  box-shadow: 0 18px 42px rgba(45, 212, 191, 0.18);
  font-weight: 950;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.newsletter button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 24px 58px rgba(45, 212, 191, 0.26);
}

.newsletter-fallback small {
  color: #8ea2bb;
  font-size: 12px;
  line-height: 1.5;
}

.newsletter-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.newsletter-proof span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  color: #cfeeff;
  border: 1px solid rgba(120, 231, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 12px;
  font-weight: 850;
}

body.light-theme .newsletter {
  background:
    radial-gradient(circle at 18% 18%, rgba(56, 189, 248, 0.18), transparent 34%),
    radial-gradient(circle at 84% 82%, rgba(20, 184, 166, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(235, 243, 252, 0.94));
}

body.light-theme .newsletter-copy > span {
  color: #43566c;
}

body.light-theme .newsletter-panel {
  background: rgba(255, 255, 255, 0.68);
}

body.light-theme .newsletter-direct {
  background: rgba(255, 255, 255, 0.82);
}

body.light-theme .newsletter-direct strong {
  color: #102033;
}

body.light-theme .newsletter-direct p {
  color: #526275;
}

body.light-theme .newsletter-direct-form small {
  color: #526275;
}

body.light-theme .newsletter-direct-form small[data-state="success"] {
  color: #047c8f;
}

body.light-theme .newsletter-direct-form small[data-state="error"] {
  color: #be123c;
}

body.light-theme .newsletter input {
  color: #102033;
  background: rgba(255, 255, 255, 0.78);
}

body.light-theme .newsletter-proof span {
  color: #17304f;
  background: rgba(255, 255, 255, 0.62);
}

.task-home-section,
.task-map-section,
.task-layout,
.task-metrics,
.task-hero {
  position: relative;
  z-index: 1;
}

.task-home-section,
.task-map-section {
  margin: 24px 0;
}

.task-home-grid,
.task-page-grid,
.task-metrics {
  display: grid;
  gap: 14px;
}

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

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

.task-card {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 100%;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(120, 231, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(11, 23, 42, 0.94), rgba(5, 12, 24, 0.86)),
    radial-gradient(circle at 84% 12%, rgba(120, 231, 255, 0.14), transparent 34%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.task-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(120, 231, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(120, 231, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.42;
  pointer-events: none;
}

.task-card:hover {
  transform: translateY(-4px);
  border-color: rgba(120, 231, 255, 0.42);
  box-shadow: 0 28px 90px rgba(56, 189, 248, 0.14);
}

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

.task-card > span {
  width: fit-content;
  color: var(--blue-2);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.task-card h3 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.04;
}

.task-card p {
  margin: 0;
  color: #aebed3;
  line-height: 1.58;
}

.task-meter {
  height: 10px;
  overflow: hidden;
  border: 1px solid rgba(120, 231, 255, 0.14);
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.12);
}

.task-meter i {
  display: block;
  width: calc(var(--task-score, 0.5) * 100%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2dd4bf, #78e7ff);
  box-shadow: 0 0 22px rgba(120, 231, 255, 0.36);
}

.task-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.task-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.task-card dt,
.task-card dd {
  margin: 0;
}

.task-card dt {
  color: #7f91aa;
  font-size: 12px;
  font-weight: 850;
}

.task-card dd {
  color: #f4fbff;
  font-size: 12px;
  font-weight: 900;
  text-align: right;
}

.task-card em,
.task-card small {
  color: #8fa0b8;
  font-size: 12px;
  font-style: normal;
  line-height: 1.5;
}

.task-card a,
.task-watch-panel a {
  display: inline-flex;
  width: fit-content;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(120, 231, 255, 0.28);
  border-radius: 999px;
  color: #dff9ff;
  background: rgba(120, 231, 255, 0.08);
  font-weight: 900;
}

.task-ready {
  border-color: rgba(45, 212, 191, 0.38);
}

.task-human .task-meter i {
  background: linear-gradient(90deg, #38bdf8, #a78bfa);
}

.task-assist .task-meter i {
  background: linear-gradient(90deg, #22d3ee, #2dd4bf);
}

.task-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 24px;
  align-items: center;
  min-height: 420px;
  margin: 24px 0;
  padding: 44px;
  border: 1px solid rgba(120, 231, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 22%, rgba(120, 231, 255, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(4, 10, 22, 0.96), rgba(10, 27, 46, 0.86)),
    url("assets/original-visuals/data-constellation.svg") center / cover;
  box-shadow: var(--shadow);
}

.task-hero p,
.task-intel-panel .section-heading p {
  margin: 0 0 12px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.task-hero h1 {
  max-width: 860px;
  margin: 0 0 18px;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.94;
}

.task-hero span {
  display: block;
  max-width: 720px;
  color: #c4cedc;
  font-size: 17px;
  line-height: 1.62;
}

.task-axis {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(120, 231, 255, 0.2);
  border-radius: 8px;
  background: rgba(2, 8, 18, 0.45);
}

.task-axis strong {
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.task-axis div {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  min-height: 170px;
  align-items: end;
}

.task-axis i {
  display: block;
  border: 1px solid rgba(120, 231, 255, 0.16);
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, rgba(120, 231, 255, 0.52), rgba(45, 212, 191, 0.08));
  box-shadow: 0 0 28px rgba(120, 231, 255, 0.16);
}

.task-axis i:nth-child(1) { height: 42%; }
.task-axis i:nth-child(2) { height: 66%; }
.task-axis i:nth-child(3) { height: 92%; }

.task-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 24px;
}

.task-metrics article {
  padding: 18px;
  border: 1px solid rgba(120, 231, 255, 0.16);
  border-radius: 8px;
  background: rgba(8, 19, 34, 0.72);
}

.task-metrics strong,
.task-metrics small {
  display: block;
}

.task-metrics strong {
  margin-bottom: 6px;
  font-size: clamp(24px, 3vw, 38px);
}

.task-metrics small {
  color: #9fb0c8;
  font-weight: 850;
}

.task-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.5fr);
  gap: 18px;
  margin: 24px 0;
}

.task-intel-panel,
.task-watch-panel {
  padding: 24px;
  border: 1px solid rgba(120, 231, 255, 0.16);
  border-radius: 8px;
  background: rgba(8, 19, 34, 0.7);
}

.task-intel-panel p,
.task-watch-panel p {
  color: #aebed3;
  line-height: 1.65;
}

.task-watch-panel {
  display: grid;
  gap: 12px;
  align-content: start;
}

.task-watch-panel > span {
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.task-watch-panel strong {
  font-size: 24px;
  line-height: 1.12;
}

.task-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.task-legend span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(120, 231, 255, 0.16);
  border-radius: 999px;
  color: #cfeeff;
  background: rgba(255, 255, 255, 0.05);
  font-size: 12px;
  font-weight: 850;
}

.task-legend i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #78e7ff;
  box-shadow: 0 0 16px rgba(120, 231, 255, 0.72);
}

body.light-theme .task-card,
body.light-theme .task-intel-panel,
body.light-theme .task-watch-panel,
body.light-theme .task-metrics article,
body.light-theme .task-axis {
  background: rgba(255, 255, 255, 0.78);
}

body.light-theme .task-card p,
body.light-theme .task-card em,
body.light-theme .task-card small,
body.light-theme .task-hero span,
body.light-theme .task-intel-panel p,
body.light-theme .task-watch-panel p,
body.light-theme .task-metrics small {
  color: #43566c;
}

body.light-theme .task-card dd {
  color: #102033;
}

body.light-theme .task-hero {
  background:
    radial-gradient(circle at 78% 22%, rgba(120, 231, 255, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(235, 243, 252, 0.88)),
    url("assets/original-visuals/data-constellation.svg") center / cover;
}

.timeline-home-section,
.timeline-section,
.timeline-hero,
.timeline-metrics,
.timeline-intelligence {
  position: relative;
  z-index: 1;
}

.timeline-home-section,
.timeline-section {
  margin: 24px 0;
}

.timeline-home-grid,
.timeline-metrics,
.timeline-intelligence {
  display: grid;
  gap: 14px;
}

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

.timeline-mini-card,
.timeline-item,
.timeline-intelligence article,
.timeline-intelligence aside,
.timeline-metrics article {
  border: 1px solid rgba(120, 231, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(11, 23, 42, 0.94), rgba(5, 12, 24, 0.86)),
    radial-gradient(circle at 92% 10%, rgba(120, 231, 255, 0.13), transparent 30%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.timeline-mini-card {
  display: grid;
  gap: 12px;
  min-height: 100%;
  padding: 20px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.timeline-mini-card:hover {
  transform: translateY(-4px);
  border-color: rgba(120, 231, 255, 0.42);
  box-shadow: 0 28px 90px rgba(56, 189, 248, 0.14);
}

.timeline-mini-card time,
.timeline-item time {
  color: #7df9ff;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 950;
  line-height: 1;
}

.timeline-mini-card span,
.timeline-item span,
.timeline-intelligence article > span {
  color: var(--blue-2);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-mini-card strong,
.timeline-item h3 {
  color: #f4fbff;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.08;
}

.timeline-mini-card small,
.timeline-item small,
.timeline-intelligence p,
.timeline-radar small {
  color: #9fb0c8;
  line-height: 1.55;
}

.timeline-mini-card a,
.timeline-item a,
.timeline-intelligence a {
  display: inline-flex;
  width: fit-content;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(120, 231, 255, 0.28);
  border-radius: 999px;
  color: #dff9ff;
  background: rgba(120, 231, 255, 0.08);
  font-weight: 900;
}

.timeline-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 24px;
  align-items: center;
  min-height: 430px;
  margin: 24px 0;
  padding: 44px;
  border: 1px solid rgba(120, 231, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 20%, rgba(120, 231, 255, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(4, 10, 22, 0.96), rgba(10, 27, 46, 0.86)),
    url("assets/original-visuals/neural-city-grid.svg") center / cover;
  box-shadow: var(--shadow);
}

.timeline-hero p {
  margin: 0 0 12px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-hero h1 {
  max-width: 840px;
  margin: 0 0 18px;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.94;
}

.timeline-hero span {
  display: block;
  max-width: 720px;
  color: #c4cedc;
  font-size: 17px;
  line-height: 1.62;
}

.timeline-radar {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 270px;
  border: 1px solid rgba(120, 231, 255, 0.2);
  border-radius: 8px;
  background: rgba(2, 8, 18, 0.45);
  overflow: hidden;
}

.timeline-radar::before,
.timeline-radar::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(120, 231, 255, 0.2);
  border-radius: 50%;
}

.timeline-radar::before {
  width: 210px;
  height: 210px;
}

.timeline-radar::after {
  width: 138px;
  height: 138px;
}

.timeline-radar i {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7df9ff;
  box-shadow: 0 0 22px rgba(125, 249, 255, 0.74);
}

.timeline-radar i:nth-child(1) { top: 22%; left: 24%; }
.timeline-radar i:nth-child(2) { right: 20%; top: 38%; }
.timeline-radar i:nth-child(3) { bottom: 22%; left: 46%; }

.timeline-radar strong,
.timeline-radar small {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}

.timeline-radar strong {
  color: #f4fbff;
  font-size: 24px;
  font-weight: 950;
}

.timeline-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 24px;
}

.timeline-metrics article {
  padding: 18px;
}

.timeline-metrics strong,
.timeline-metrics small {
  display: block;
}

.timeline-metrics strong {
  margin-bottom: 6px;
  font-size: clamp(24px, 3vw, 38px);
}

.timeline-intelligence {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  margin: 24px 0;
}

.timeline-intelligence article,
.timeline-intelligence aside {
  padding: 24px;
}

.timeline-intelligence h2 {
  max-width: 780px;
  margin: 10px 0 12px;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.04;
}

.timeline-intelligence aside {
  display: grid;
  gap: 12px;
  align-content: start;
}

.timeline-intelligence aside strong {
  font-size: 24px;
}

.timeline-list {
  position: relative;
  display: grid;
  gap: 16px;
  padding-left: 24px;
}

.timeline-list::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(120, 231, 255, 0.8), transparent);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 34px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #7df9ff;
  box-shadow: 0 0 24px rgba(125, 249, 255, 0.82);
}

.timeline-item h3,
.timeline-item p {
  margin: 0 0 10px;
}

body.light-theme .timeline-mini-card,
body.light-theme .timeline-item,
body.light-theme .timeline-intelligence article,
body.light-theme .timeline-intelligence aside,
body.light-theme .timeline-metrics article,
body.light-theme .timeline-radar {
  background: rgba(255, 255, 255, 0.78);
}

body.light-theme .timeline-mini-card strong,
body.light-theme .timeline-item h3,
body.light-theme .timeline-radar strong,
body.light-theme .timeline-intelligence aside strong {
  color: #102033;
}

body.light-theme .timeline-mini-card small,
body.light-theme .timeline-item small,
body.light-theme .timeline-item p,
body.light-theme .timeline-intelligence p,
body.light-theme .timeline-hero span,
body.light-theme .timeline-metrics small {
  color: #43566c;
}

body.light-theme .timeline-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(120, 231, 255, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(235, 243, 252, 0.88)),
    url("assets/original-visuals/neural-city-grid.svg") center / cover;
}

.heatmap-home-section,
.heatmap-section,
.heatmap-hero,
.heatmap-metrics,
.heatmap-intelligence {
  position: relative;
  z-index: 1;
}

.heatmap-home-section,
.heatmap-section {
  margin: 24px 0;
}

.heatmap-home-grid,
.heatmap-grid,
.heatmap-metrics,
.heatmap-intelligence {
  display: grid;
  gap: 14px;
}

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

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

.heatmap-card,
.heatmap-intelligence article,
.heatmap-intelligence aside,
.heatmap-metrics article {
  border: 1px solid rgba(120, 231, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(11, 23, 42, 0.94), rgba(5, 12, 24, 0.86)),
    radial-gradient(circle at 92% 8%, rgba(120, 231, 255, 0.16), transparent 32%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.heatmap-card {
  display: grid;
  gap: 13px;
  min-height: 100%;
  padding: 20px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.heatmap-card:hover {
  transform: translateY(-4px);
  border-color: rgba(120, 231, 255, 0.42);
  box-shadow: 0 28px 90px rgba(56, 189, 248, 0.14);
}

.heatmap-score {
  position: relative;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    conic-gradient(from 180deg, #78e7ff calc(var(--heat, 0.5) * 1turn), rgba(148, 163, 184, 0.12) 0),
    rgba(2, 8, 18, 0.7);
  box-shadow: 0 0 32px rgba(120, 231, 255, 0.18);
}

.heatmap-score::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: rgba(2, 8, 18, 0.9);
}

.heatmap-score strong,
.heatmap-score small {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}

.heatmap-score strong {
  color: #f4fbff;
  font-size: 28px;
  line-height: 1;
}

.heatmap-score small {
  color: #9fb0c8;
  font-size: 11px;
  font-weight: 900;
}

.heatmap-card > span,
.heatmap-intelligence article > span {
  color: var(--blue-2);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.heatmap-card h3 {
  margin: 0;
  color: #f4fbff;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.12;
}

.heatmap-card p,
.heatmap-intelligence p,
.heatmap-globe small {
  margin: 0;
  color: #9fb0c8;
  line-height: 1.55;
}

.heatmap-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.heatmap-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.heatmap-card dt,
.heatmap-card dd {
  margin: 0;
  font-size: 12px;
}

.heatmap-card dt {
  color: #7f91aa;
  font-weight: 850;
}

.heatmap-card dd {
  color: #f4fbff;
  font-weight: 900;
  text-align: right;
}

.heatmap-card a,
.heatmap-intelligence a {
  display: inline-flex;
  width: fit-content;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(120, 231, 255, 0.28);
  border-radius: 999px;
  color: #dff9ff;
  background: rgba(120, 231, 255, 0.08);
  font-weight: 900;
}

.heatmap-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 24px;
  align-items: center;
  min-height: 430px;
  margin: 24px 0;
  padding: 44px;
  border: 1px solid rgba(120, 231, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 20%, rgba(120, 231, 255, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(4, 10, 22, 0.96), rgba(10, 27, 46, 0.86)),
    url("assets/original-visuals/data-constellation.svg") center / cover;
  box-shadow: var(--shadow);
}

.heatmap-hero p {
  margin: 0 0 12px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.heatmap-hero h1 {
  max-width: 840px;
  margin: 0 0 18px;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.94;
}

.heatmap-hero span {
  display: block;
  max-width: 720px;
  color: #c4cedc;
  font-size: 17px;
  line-height: 1.62;
}

.heatmap-globe {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(120, 231, 255, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle, rgba(120, 231, 255, 0.08), transparent 58%),
    rgba(2, 8, 18, 0.45);
}

.heatmap-globe::before,
.heatmap-globe::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(120, 231, 255, 0.22);
  border-radius: 50%;
}

.heatmap-globe::before {
  width: 220px;
  height: 220px;
}

.heatmap-globe::after {
  width: 220px;
  height: 92px;
}

.heatmap-globe i {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7df9ff;
  box-shadow: 0 0 24px rgba(125, 249, 255, 0.82);
}

.heatmap-globe i:nth-child(1) { top: 28%; left: 24%; }
.heatmap-globe i:nth-child(2) { top: 34%; right: 22%; }
.heatmap-globe i:nth-child(3) { bottom: 30%; left: 48%; }
.heatmap-globe i:nth-child(4) { bottom: 22%; right: 34%; }

.heatmap-globe strong,
.heatmap-globe small {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}

.heatmap-globe strong {
  color: #f4fbff;
  font-size: 24px;
  font-weight: 950;
}

.heatmap-metrics {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0 0 24px;
}

.heatmap-metrics article {
  padding: 18px;
}

.heatmap-metrics strong,
.heatmap-metrics small {
  display: block;
}

.heatmap-metrics strong {
  margin-bottom: 6px;
  font-size: clamp(24px, 3vw, 36px);
}

.heatmap-metrics small {
  color: #9fb0c8;
  font-weight: 850;
}

.heatmap-intelligence {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  margin: 24px 0;
}

.heatmap-intelligence article,
.heatmap-intelligence aside {
  padding: 24px;
}

.heatmap-intelligence h2 {
  max-width: 780px;
  margin: 10px 0 12px;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.04;
}

.heatmap-intelligence aside {
  display: grid;
  gap: 12px;
  align-content: start;
}

.heatmap-intelligence aside strong {
  font-size: 24px;
}

body.light-theme .heatmap-card,
body.light-theme .heatmap-intelligence article,
body.light-theme .heatmap-intelligence aside,
body.light-theme .heatmap-metrics article,
body.light-theme .heatmap-globe {
  background: rgba(255, 255, 255, 0.78);
}

body.light-theme .heatmap-card h3,
body.light-theme .heatmap-card dd,
body.light-theme .heatmap-globe strong,
body.light-theme .heatmap-intelligence aside strong,
body.light-theme .heatmap-score strong {
  color: #102033;
}

body.light-theme .heatmap-card p,
body.light-theme .heatmap-card dt,
body.light-theme .heatmap-intelligence p,
body.light-theme .heatmap-hero span,
body.light-theme .heatmap-metrics small,
body.light-theme .heatmap-globe small,
body.light-theme .heatmap-score small {
  color: #43566c;
}

body.light-theme .heatmap-score::after {
  background: rgba(255, 255, 255, 0.88);
}

body.light-theme .heatmap-hero {
  background:
    radial-gradient(circle at 78% 20%, rgba(120, 231, 255, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(235, 243, 252, 0.88)),
    url("assets/original-visuals/data-constellation.svg") center / cover;
}

.global-map-home-section,
.global-map-section,
.global-map-hero,
.global-map-metrics,
.global-map-intelligence {
  position: relative;
  z-index: 1;
}

.global-map-home-section,
.global-map-section {
  margin: 24px 0;
}

.global-map-home-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.44fr) minmax(0, 1fr);
  gap: 14px;
}

.global-map-home-grid,
.global-map-grid,
.global-map-metrics,
.global-map-intelligence {
  display: grid;
  gap: 14px;
}

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

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

.global-map-card,
.global-map-intelligence article,
.global-map-intelligence aside,
.global-map-metrics article,
.global-map-orbit {
  border: 1px solid rgba(120, 231, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(11, 23, 42, 0.94), rgba(5, 12, 24, 0.88)),
    radial-gradient(circle at 88% 12%, rgba(120, 231, 255, 0.16), transparent 34%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.global-map-card {
  display: grid;
  gap: 13px;
  min-height: 100%;
  padding: 20px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.global-map-card:hover {
  transform: translateY(-4px);
  border-color: rgba(120, 231, 255, 0.42);
  box-shadow: 0 28px 90px rgba(56, 189, 248, 0.14);
}

.global-map-score {
  position: relative;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    conic-gradient(from 180deg, #78e7ff calc(var(--map-score, 0.5) * 1turn), rgba(148, 163, 184, 0.12) 0),
    rgba(2, 8, 18, 0.7);
  box-shadow: 0 0 32px rgba(120, 231, 255, 0.18);
}

.global-map-score::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: rgba(2, 8, 18, 0.9);
}

.global-map-score strong,
.global-map-score small {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}

.global-map-score strong {
  color: #f4fbff;
  font-size: 28px;
  line-height: 1;
}

.global-map-score small {
  color: #9fb0c8;
  font-size: 11px;
  font-weight: 900;
}

.global-map-card > span,
.global-map-intelligence article > span {
  color: var(--blue-2);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.global-map-card h3 {
  margin: 0;
  color: #f4fbff;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.14;
}

.global-map-card p,
.global-map-intelligence p,
.global-map-orbit small {
  margin: 0;
  color: #9fb0c8;
  line-height: 1.55;
}

.global-map-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.global-map-card dl div {
  display: grid;
  gap: 3px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.global-map-card dt,
.global-map-card dd {
  margin: 0;
  font-size: 12px;
}

.global-map-card dt {
  color: #7f91aa;
  font-weight: 850;
}

.global-map-card dd {
  color: #f4fbff;
  font-weight: 900;
}

.global-map-card a,
.global-map-intelligence a {
  display: inline-flex;
  width: fit-content;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(120, 231, 255, 0.28);
  border-radius: 999px;
  color: #dff9ff;
  background: rgba(120, 231, 255, 0.08);
  font-weight: 900;
}

.global-map-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 24px;
  align-items: center;
  min-height: 430px;
  margin: 24px 0;
  padding: 44px;
  border: 1px solid rgba(120, 231, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 20%, rgba(120, 231, 255, 0.18), transparent 30%),
    radial-gradient(circle at 18% 86%, rgba(45, 212, 191, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(4, 10, 22, 0.96), rgba(10, 27, 46, 0.86)),
    url("assets/original-visuals/data-constellation.svg") center / cover;
  box-shadow: var(--shadow);
}

.global-map-hero p {
  margin: 0 0 12px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.global-map-hero h1 {
  max-width: 820px;
  margin: 0 0 18px;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.94;
}

.global-map-hero span {
  display: block;
  max-width: 720px;
  color: #c4cedc;
  font-size: 17px;
  line-height: 1.62;
}

.global-map-orbit {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 46%, rgba(120, 231, 255, 0.1), transparent 52%),
    linear-gradient(90deg, transparent 0 12%, rgba(120, 231, 255, 0.08) 12% 13%, transparent 13% 25%),
    rgba(2, 8, 18, 0.45);
}

.global-map-orbit.compact {
  min-height: 100%;
}

.global-map-orbit::before,
.global-map-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(120, 231, 255, 0.2);
  border-radius: 50%;
}

.global-map-orbit::before {
  width: 230px;
  height: 230px;
}

.global-map-orbit::after {
  width: 320px;
  height: 120px;
  transform: rotate(-12deg);
}

.global-map-orbit i {
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7df9ff;
  box-shadow: 0 0 24px rgba(125, 249, 255, 0.82);
}

.global-map-orbit strong,
.global-map-orbit small {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 240px;
  text-align: center;
}

.global-map-orbit strong {
  color: #f4fbff;
  font-size: 24px;
  font-weight: 950;
}

.global-map-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 24px;
}

.global-map-metrics article {
  padding: 18px;
}

.global-map-metrics strong,
.global-map-metrics small {
  display: block;
}

.global-map-metrics strong {
  margin-bottom: 6px;
  font-size: clamp(24px, 3vw, 36px);
}

.global-map-metrics small {
  color: #9fb0c8;
  font-weight: 850;
}

.global-map-intelligence {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  margin: 24px 0;
}

.global-map-intelligence article,
.global-map-intelligence aside {
  padding: 24px;
}

.global-map-intelligence h2 {
  max-width: 780px;
  margin: 10px 0 12px;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.04;
}

.global-map-intelligence aside {
  display: grid;
  gap: 12px;
  align-content: start;
}

.global-map-intelligence aside strong {
  font-size: 24px;
}

body.light-theme .global-map-card,
body.light-theme .global-map-intelligence article,
body.light-theme .global-map-intelligence aside,
body.light-theme .global-map-metrics article,
body.light-theme .global-map-orbit {
  background: rgba(255, 255, 255, 0.78);
}

body.light-theme .global-map-card h3,
body.light-theme .global-map-card dd,
body.light-theme .global-map-orbit strong,
body.light-theme .global-map-intelligence aside strong,
body.light-theme .global-map-score strong {
  color: #102033;
}

body.light-theme .global-map-card p,
body.light-theme .global-map-card dt,
body.light-theme .global-map-intelligence p,
body.light-theme .global-map-hero span,
body.light-theme .global-map-metrics small,
body.light-theme .global-map-orbit small,
body.light-theme .global-map-score small {
  color: #43566c;
}

body.light-theme .global-map-score::after {
  background: rgba(255, 255, 255, 0.88);
}

body.light-theme .global-map-hero {
  background:
    radial-gradient(circle at 78% 20%, rgba(120, 231, 255, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(235, 243, 252, 0.88)),
    url("assets/original-visuals/data-constellation.svg") center / cover;
}

.physical-home-section,
.physical-layer-section,
.physical-hero,
.physical-metrics,
.physical-intelligence {
  position: relative;
  z-index: 1;
}

.physical-home-section,
.physical-layer-section {
  margin: 24px 0;
}

.physical-home-grid,
.physical-layer-grid,
.physical-metrics,
.physical-intelligence {
  display: grid;
  gap: 14px;
}

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

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

.physical-layer-card,
.physical-intelligence article,
.physical-intelligence aside,
.physical-metrics article {
  border: 1px solid rgba(120, 231, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(11, 23, 42, 0.94), rgba(5, 12, 24, 0.86)),
    radial-gradient(circle at 88% 10%, rgba(45, 212, 191, 0.16), transparent 34%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.physical-layer-card {
  display: grid;
  gap: 13px;
  min-height: 100%;
  padding: 20px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.physical-layer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(120, 231, 255, 0.42);
  box-shadow: 0 28px 90px rgba(56, 189, 248, 0.14);
}

.physical-layer-score {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(120, 231, 255, 0.24);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(120, 231, 255, 0.12), rgba(45, 212, 191, 0.04)),
    rgba(2, 8, 18, 0.68);
  box-shadow: inset 0 calc(var(--physical-score, 0.5) * -58px) 0 rgba(120, 231, 255, 0.16), 0 0 32px rgba(120, 231, 255, 0.14);
}

.physical-layer-score strong,
.physical-layer-score small {
  display: block;
  text-align: center;
}

.physical-layer-score strong {
  color: #f4fbff;
  font-size: 30px;
  line-height: 1;
}

.physical-layer-score small {
  color: #9fb0c8;
  font-size: 11px;
  font-weight: 900;
}

.physical-layer-card > span,
.physical-intelligence article > span {
  color: var(--blue-2);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.physical-layer-card h3 {
  margin: 0;
  color: #f4fbff;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.14;
}

.physical-layer-card p,
.physical-layer-card small,
.physical-layer-card em,
.physical-intelligence p,
.physical-stack-orbit small {
  margin: 0;
  color: #9fb0c8;
  font-style: normal;
  line-height: 1.55;
}

.physical-layer-card a,
.physical-intelligence a {
  display: inline-flex;
  width: fit-content;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(120, 231, 255, 0.28);
  border-radius: 999px;
  color: #dff9ff;
  background: rgba(120, 231, 255, 0.08);
  font-weight: 900;
}

.physical-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 24px;
  align-items: center;
  min-height: 430px;
  margin: 24px 0;
  padding: 44px;
  border: 1px solid rgba(120, 231, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 20%, rgba(120, 231, 255, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(4, 10, 22, 0.96), rgba(10, 27, 46, 0.86)),
    url("assets/original-visuals/ai-chip-landscape.svg") center / cover;
  box-shadow: var(--shadow);
}

.physical-hero p {
  margin: 0 0 12px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.physical-hero h1 {
  max-width: 850px;
  margin: 0 0 18px;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.94;
}

.physical-hero span {
  display: block;
  max-width: 720px;
  color: #c4cedc;
  font-size: 17px;
  line-height: 1.62;
}

.physical-stack-orbit {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(120, 231, 255, 0.2);
  border-radius: 8px;
  background: rgba(2, 8, 18, 0.45);
}

.physical-stack-orbit::before,
.physical-stack-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(120, 231, 255, 0.22);
  border-radius: 50%;
}

.physical-stack-orbit::before {
  width: 220px;
  height: 220px;
}

.physical-stack-orbit::after {
  width: 138px;
  height: 138px;
}

.physical-stack-orbit i {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #7df9ff;
  box-shadow: 0 0 24px rgba(125, 249, 255, 0.82);
}

.physical-stack-orbit i:nth-child(1) { top: 24%; left: 30%; }
.physical-stack-orbit i:nth-child(2) { top: 42%; right: 20%; }
.physical-stack-orbit i:nth-child(3) { bottom: 24%; left: 42%; }
.physical-stack-orbit i:nth-child(4) { bottom: 38%; left: 20%; }

.physical-stack-orbit strong,
.physical-stack-orbit small {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}

.physical-stack-orbit strong {
  color: #f4fbff;
  font-size: 24px;
  font-weight: 950;
}

.physical-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 24px;
}

.physical-metrics article {
  padding: 18px;
}

.physical-metrics strong,
.physical-metrics small {
  display: block;
}

.physical-metrics strong {
  margin-bottom: 6px;
  font-size: clamp(24px, 3vw, 36px);
}

.physical-metrics small {
  color: #9fb0c8;
  font-weight: 850;
}

.physical-intelligence {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  margin: 24px 0;
}

.physical-intelligence article,
.physical-intelligence aside {
  padding: 24px;
}

.physical-intelligence h2 {
  max-width: 780px;
  margin: 10px 0 12px;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.04;
}

.physical-intelligence aside {
  display: grid;
  gap: 12px;
  align-content: start;
}

.physical-intelligence aside strong {
  font-size: 24px;
}

body.light-theme .physical-layer-card,
body.light-theme .physical-intelligence article,
body.light-theme .physical-intelligence aside,
body.light-theme .physical-metrics article,
body.light-theme .physical-stack-orbit {
  background: rgba(255, 255, 255, 0.78);
}

body.light-theme .physical-layer-card h3,
body.light-theme .physical-layer-score strong,
body.light-theme .physical-stack-orbit strong,
body.light-theme .physical-intelligence aside strong {
  color: #102033;
}

body.light-theme .physical-layer-card p,
body.light-theme .physical-layer-card small,
body.light-theme .physical-layer-card em,
body.light-theme .physical-intelligence p,
body.light-theme .physical-hero span,
body.light-theme .physical-metrics small,
body.light-theme .physical-stack-orbit small,
body.light-theme .physical-layer-score small {
  color: #43566c;
}

body.light-theme .physical-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(120, 231, 255, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(235, 243, 252, 0.88)),
    url("assets/original-visuals/ai-chip-landscape.svg") center / cover;
}

.economy-home-section,
.economy-layer-section,
.economy-hero,
.economy-metrics,
.economy-intelligence {
  position: relative;
  z-index: 1;
}

.economy-home-section,
.economy-layer-section {
  margin: 24px 0;
}

.economy-home-grid,
.economy-layer-grid,
.economy-metrics,
.economy-intelligence {
  display: grid;
  gap: 14px;
}

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

.economy-card,
.economy-intelligence article,
.economy-intelligence aside,
.economy-metrics article {
  border: 1px solid rgba(120, 231, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(9, 20, 38, 0.95), rgba(4, 10, 21, 0.9)),
    radial-gradient(circle at 88% 12%, rgba(74, 222, 128, 0.13), transparent 32%),
    radial-gradient(circle at 10% 95%, rgba(56, 189, 248, 0.16), transparent 34%);
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.22);
}

.economy-card {
  display: grid;
  gap: 13px;
  min-height: 100%;
  padding: 20px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.economy-card:hover {
  transform: translateY(-4px);
  border-color: rgba(120, 231, 255, 0.44);
  box-shadow: 0 30px 94px rgba(56, 189, 248, 0.14);
}

.economy-score {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(120, 231, 255, 0.24);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(120, 231, 255, 0.12), rgba(74, 222, 128, 0.05)),
    rgba(2, 8, 18, 0.68);
  box-shadow: inset 0 calc(var(--economy-score, 0.5) * -58px) 0 rgba(74, 222, 128, 0.13), 0 0 32px rgba(120, 231, 255, 0.12);
}

.economy-score strong,
.economy-score small {
  display: block;
  text-align: center;
}

.economy-score strong {
  color: #f4fbff;
  font-size: 30px;
  line-height: 1;
}

.economy-score small {
  color: #9fb0c8;
  font-size: 11px;
  font-weight: 900;
}

.economy-card > span,
.economy-intelligence article > span {
  color: var(--blue-2);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.economy-card h3 {
  margin: 0;
  color: #f4fbff;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.14;
}

.economy-card p,
.economy-card small,
.economy-intelligence p,
.economy-terminal small {
  margin: 0;
  color: #9fb0c8;
  line-height: 1.55;
}

.economy-card a,
.economy-intelligence a {
  display: inline-flex;
  width: fit-content;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(120, 231, 255, 0.28);
  border-radius: 999px;
  color: #dff9ff;
  background: rgba(120, 231, 255, 0.08);
  font-weight: 900;
}

.economy-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 24px;
  align-items: center;
  min-height: 430px;
  margin: 24px 0;
  padding: 44px;
  border: 1px solid rgba(120, 231, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 18%, rgba(74, 222, 128, 0.14), transparent 28%),
    radial-gradient(circle at 18% 88%, rgba(56, 189, 248, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(4, 10, 22, 0.97), rgba(10, 27, 46, 0.88)),
    url("assets/original-visuals/data-constellation.svg") center / cover;
  box-shadow: var(--shadow);
}

.economy-hero p {
  margin: 0 0 12px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.economy-hero h1 {
  max-width: 860px;
  margin: 0 0 18px;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.94;
}

.economy-hero span {
  display: block;
  max-width: 720px;
  color: #c4cedc;
  font-size: 17px;
  line-height: 1.62;
}

.economy-terminal {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 280px;
  align-content: center;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(120, 231, 255, 0.2);
  border-radius: 8px;
  background: rgba(2, 8, 18, 0.55);
}

.economy-terminal::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(120, 231, 255, 0.12);
  background-image:
    linear-gradient(rgba(120, 231, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 231, 255, 0.1) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.45;
}

.economy-terminal strong,
.economy-terminal small {
  position: relative;
  z-index: 1;
  display: block;
}

.economy-terminal strong {
  color: #f4fbff;
  font-size: 24px;
  font-weight: 950;
}

.economy-metrics {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0 0 24px;
}

.economy-metrics article {
  padding: 18px;
}

.economy-metrics strong,
.economy-metrics small {
  display: block;
}

.economy-metrics strong {
  margin-bottom: 6px;
  font-size: clamp(24px, 3vw, 36px);
}

.economy-metrics small {
  color: #9fb0c8;
  font-weight: 850;
}

.economy-intelligence {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  margin: 24px 0;
}

.economy-intelligence article,
.economy-intelligence aside {
  padding: 24px;
}

.economy-intelligence h2 {
  max-width: 780px;
  margin: 10px 0 12px;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.04;
}

.economy-intelligence aside {
  display: grid;
  gap: 12px;
  align-content: start;
}

.economy-intelligence aside strong {
  font-size: 24px;
}

body.light-theme .economy-card,
body.light-theme .economy-intelligence article,
body.light-theme .economy-intelligence aside,
body.light-theme .economy-metrics article,
body.light-theme .economy-terminal {
  background: rgba(255, 255, 255, 0.78);
}

body.light-theme .economy-card h3,
body.light-theme .economy-score strong,
body.light-theme .economy-terminal strong,
body.light-theme .economy-intelligence aside strong {
  color: #102033;
}

body.light-theme .economy-card p,
body.light-theme .economy-card small,
body.light-theme .economy-intelligence p,
body.light-theme .economy-hero span,
body.light-theme .economy-metrics small,
body.light-theme .economy-terminal small,
body.light-theme .economy-score small {
  color: #43566c;
}

body.light-theme .economy-hero {
  background:
    radial-gradient(circle at 80% 18%, rgba(74, 222, 128, 0.13), transparent 28%),
    radial-gradient(circle at 18% 88%, rgba(56, 189, 248, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(235, 243, 252, 0.88)),
    url("assets/original-visuals/data-constellation.svg") center / cover;
}

.future-index-home-section,
.future-index-section,
.future-index-hero,
.future-index-metrics,
.future-index-intelligence {
  position: relative;
  z-index: 1;
}

.future-index-home-section,
.future-index-section {
  margin: 24px 0;
}

.future-index-home-grid,
.future-index-grid,
.future-index-metrics,
.future-index-intelligence {
  display: grid;
  gap: 14px;
}

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

.future-index-card,
.future-index-intelligence article,
.future-index-intelligence aside,
.future-index-metrics article,
.future-index-core {
  border: 1px solid rgba(120, 231, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(9, 20, 38, 0.95), rgba(4, 10, 21, 0.9)),
    radial-gradient(circle at 86% 10%, rgba(120, 231, 255, 0.16), transparent 34%),
    radial-gradient(circle at 10% 95%, rgba(45, 212, 191, 0.12), transparent 34%);
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.22);
}

.future-index-card {
  display: grid;
  gap: 13px;
  min-height: 100%;
  padding: 20px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.future-index-card:hover {
  transform: translateY(-4px);
  border-color: rgba(120, 231, 255, 0.44);
  box-shadow: 0 30px 94px rgba(56, 189, 248, 0.14);
}

.future-index-score {
  position: relative;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    conic-gradient(from 180deg, #78e7ff calc(var(--future-score, 0.5) * 1turn), rgba(148, 163, 184, 0.12) 0),
    rgba(2, 8, 18, 0.7);
  box-shadow: 0 0 32px rgba(120, 231, 255, 0.18);
}

.future-index-score::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: rgba(2, 8, 18, 0.9);
}

.future-index-score strong,
.future-index-score small {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}

.future-index-score strong {
  color: #f4fbff;
  font-size: 28px;
  line-height: 1;
}

.future-index-score small {
  color: #9fb0c8;
  font-size: 11px;
  font-weight: 900;
}

.future-index-card > span,
.future-index-intelligence article > span {
  color: var(--blue-2);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.future-index-card h3 {
  margin: 0;
  color: #f4fbff;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.14;
}

.future-index-card p,
.future-index-card small,
.future-index-intelligence p,
.future-index-core small,
.future-index-core span {
  margin: 0;
  color: #9fb0c8;
  line-height: 1.55;
}

.future-index-card a,
.future-index-intelligence a {
  display: inline-flex;
  width: fit-content;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(120, 231, 255, 0.28);
  border-radius: 999px;
  color: #dff9ff;
  background: rgba(120, 231, 255, 0.08);
  font-weight: 900;
}

.future-index-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
  gap: 24px;
  align-items: center;
  min-height: 430px;
  margin: 24px 0;
  padding: 44px;
  border: 1px solid rgba(120, 231, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 20%, rgba(120, 231, 255, 0.18), transparent 30%),
    radial-gradient(circle at 18% 86%, rgba(45, 212, 191, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(4, 10, 22, 0.97), rgba(10, 27, 46, 0.88)),
    url("assets/original-visuals/data-constellation.svg") center / cover;
  box-shadow: var(--shadow);
}

.future-index-hero p {
  margin: 0 0 12px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.future-index-hero h1 {
  max-width: 860px;
  margin: 0 0 18px;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.94;
}

.future-index-hero span {
  display: block;
  max-width: 720px;
  color: #c4cedc;
  font-size: 17px;
  line-height: 1.62;
}

.future-index-core {
  min-height: 280px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 24px;
  text-align: center;
}

.future-index-core strong {
  color: #f4fbff;
  font-size: clamp(64px, 9vw, 112px);
  line-height: 0.9;
}

.future-index-core span {
  color: var(--blue-2);
  font-weight: 950;
}

.future-index-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 24px;
}

.future-index-metrics article {
  padding: 18px;
}

.future-index-metrics strong,
.future-index-metrics small {
  display: block;
}

.future-index-metrics strong {
  margin-bottom: 6px;
  font-size: clamp(24px, 3vw, 36px);
}

.future-index-metrics small {
  color: #9fb0c8;
  font-weight: 850;
}

.future-index-intelligence {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  margin: 24px 0;
}

.future-index-intelligence article,
.future-index-intelligence aside {
  padding: 24px;
}

.future-index-intelligence h2 {
  max-width: 780px;
  margin: 10px 0 12px;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.04;
}

.future-index-intelligence aside {
  display: grid;
  gap: 12px;
  align-content: start;
}

.future-index-intelligence aside strong {
  font-size: 24px;
}

body.light-theme .future-index-card,
body.light-theme .future-index-intelligence article,
body.light-theme .future-index-intelligence aside,
body.light-theme .future-index-metrics article,
body.light-theme .future-index-core {
  background: rgba(255, 255, 255, 0.78);
}

body.light-theme .future-index-card h3,
body.light-theme .future-index-score strong,
body.light-theme .future-index-core strong,
body.light-theme .future-index-intelligence aside strong {
  color: #102033;
}

body.light-theme .future-index-card p,
body.light-theme .future-index-card small,
body.light-theme .future-index-intelligence p,
body.light-theme .future-index-hero span,
body.light-theme .future-index-metrics small,
body.light-theme .future-index-core small,
body.light-theme .future-index-score small {
  color: #43566c;
}

body.light-theme .future-index-score::after {
  background: rgba(255, 255, 255, 0.88);
}

body.light-theme .future-index-hero {
  background:
    radial-gradient(circle at 78% 20%, rgba(120, 231, 255, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(235, 243, 252, 0.88)),
    url("assets/original-visuals/data-constellation.svg") center / cover;
}

.contact-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin: 0 0 34px;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.18), rgba(17, 29, 48, 0.78));
}

.contact-strip h2 {
  margin-bottom: 8px;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.12;
}

.contact-strip p {
  max-width: 720px;
  margin: 0;
  color: #c4cedc;
  line-height: 1.6;
}

.contact-strip > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  color: white;
  background: var(--blue);
  border-radius: 8px;
  font-weight: 850;
  white-space: nowrap;
}

body.light-theme .contact-strip {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.12), rgba(255, 255, 255, 0.86));
}

body.light-theme .contact-strip p {
  color: #43566c;
}

body.light-theme .catalog-hero {
  background:
    linear-gradient(90deg, rgba(247, 251, 255, 0.94), rgba(247, 251, 255, 0.72)),
    radial-gradient(circle at 80% 18%, rgba(120, 231, 255, 0.18), transparent 34%),
    url("assets/robot-lab.png") right center / cover;
}

body.light-theme .catalog-hero > span,
body.light-theme .catalog-card p,
body.light-theme .catalog-card dl div,
body.light-theme .signal-card small,
body.light-theme .catalog-results-head span,
body.light-theme .quick-path-grid span,
body.light-theme .use-case-profile-grid small,
body.light-theme .profile-media-card p,
body.light-theme .use-case-panel-head p,
body.light-theme .use-case-robot-grid small,
body.light-theme .empty-note,
body.light-theme .home-intelligence-grid small,
body.light-theme .signal-update-card small,
body.light-theme .buyer-guide-grid small,
body.light-theme .profile-stack-grid small,
body.light-theme .company-signal-grid small,
body.light-theme .data-quality-grid small,
body.light-theme .tr-guide-grid small,
body.light-theme .faq-grid p,
body.light-theme .featured-robot-card p,
body.light-theme .robot-week-grid small {
  color: #43566c;
}

body.light-theme .catalog-metrics article,
body.light-theme .catalog-sidebar,
body.light-theme .catalog-results-head,
body.light-theme .catalog-card,
body.light-theme .signal-card,
body.light-theme .home-intelligence-grid article,
body.light-theme .signal-update-card,
body.light-theme .buyer-guide-grid article,
body.light-theme .profile-stack-grid article,
body.light-theme .company-signal-grid article,
body.light-theme .compare-summary-grid article,
body.light-theme .data-quality-grid article,
body.light-theme .tr-guide-grid a,
body.light-theme .compare-preset-grid a,
body.light-theme .faq-grid details,
body.light-theme .featured-robot-card,
body.light-theme .profile-hero,
body.light-theme .profile-facts,
body.light-theme .price-column,
body.light-theme .quick-path-grid a,
body.light-theme .use-case-profile-grid a,
body.light-theme .profile-media-card,
body.light-theme .robot-video-player,
body.light-theme .use-case-panel,
body.light-theme .profile-intel-strip article,
body.light-theme .compare-picker label {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(235, 243, 252, 0.94));
}

body.light-theme .robot-week-grid div {
  background: rgba(255, 255, 255, 0.68);
}

body.light-theme .catalog-sidebar label,
body.light-theme .catalog-card dt,
body.light-theme .catalog-card h2,
body.light-theme .signal-card strong,
body.light-theme .signal-update-card strong,
body.light-theme .buyer-guide-grid strong,
body.light-theme .profile-stack-grid strong,
body.light-theme .company-signal-grid strong,
body.light-theme .compare-summary-grid strong,
body.light-theme .data-quality-grid strong,
body.light-theme .tr-guide-grid strong,
body.light-theme .compare-preset-grid strong,
body.light-theme .faq-grid summary,
body.light-theme .featured-robot-card h3,
body.light-theme .robot-week-grid strong,
body.light-theme .profile-facts dt,
body.light-theme .price-card strong,
body.light-theme .quick-path-grid strong,
body.light-theme .use-case-profile-grid strong,
body.light-theme .profile-media-card h3,
body.light-theme .use-case-panel-head h2,
body.light-theme .use-case-robot-grid strong,
body.light-theme .profile-intel-strip strong,
body.light-theme .compare-picker label {
  color: #162235;
}

body.light-theme .profile-hero > div > span,
body.light-theme .profile-facts dd,
body.light-theme .price-card p,
body.light-theme .price-card small,
body.light-theme .video-player-info p {
  color: #43566c;
}

body.light-theme .company-profile-mark {
  color: #162235;
  background:
    radial-gradient(circle at 70% 22%, rgba(120, 231, 255, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(235, 243, 252, 0.84));
}

body.light-theme .catalog-sidebar input,
body.light-theme .catalog-filter-group button,
body.light-theme .advanced-filter-group select {
  color: #162235;
  background: rgba(255, 255, 255, 0.72);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.2fr;
  gap: 34px;
  padding: 0 0 34px;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 16px;
}

.site-footer p {
  max-width: 260px;
  color: #aebbd0;
  line-height: 1.6;
}

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

.site-footer a:not(.brand) {
  color: #c4cedc;
}

.footer-x-link {
  display: inline-flex;
  width: fit-content;
  min-height: 36px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(120, 231, 255, 0.24);
  border-radius: 999px;
  background: rgba(120, 231, 255, 0.08);
  color: #dff8ff !important;
  font-size: 13px;
  font-weight: 900;
}

.footer-x-link:hover {
  border-color: rgba(120, 231, 255, 0.48);
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.14);
}

body.light-theme .site-footer a:not(.brand),
body.light-theme .product-panel small,
body.light-theme .facts span {
  color: #53657a;
}

.socials {
  gap: 10px;
}

.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.copyright {
  grid-column: 1 / -1;
  max-width: none;
  margin: 18px 0 0;
  text-align: center;
  color: var(--soft);
  font-size: 13px;
}

@media (max-width: 1080px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 32px, 900px);
  }

  .site-header {
    align-items: center;
    flex-wrap: wrap;
    padding-top: 18px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    gap: 24px;
    padding-top: 4px;
  }

  .nav-item {
    position: static;
  }

  .nav-menu {
    left: 0;
    right: 0;
    width: min(100%, 900px);
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 34px;
    gap: 22px;
  }

  .hero-visual {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    min-width: 0;
    height: 260px;
    order: 2;
  }

  .robot-head {
    right: 12%;
    top: 0;
    transform: scale(0.78);
    transform-origin: top right;
  }

  .hero-wireframe {
    right: 12%;
    top: 28px;
    transform: scale(0.72);
    transform-origin: top right;
  }

  .hero-radar {
    width: 170px;
    height: 170px;
    left: 28px;
    bottom: 24px;
  }

  .hero-live-signals {
    left: 32px;
    top: 44%;
  }

  .data-wave {
    bottom: -24px;
  }

  .filter-panel,
  .newsletter {
    flex-wrap: wrap;
    grid-template-columns: 1fr;
  }

  .info-grid,
  .editorial-section,
  .brand-showcase,
  .market-hero,
  .catalog-layout,
  .market-page-layout,
  .profile-hero,
  .profile-detail-grid,
  .profile-media-card,
  .robot-video-player,
  .post-grid,
  .video-grid,
  .cinema-grid,
  .index-grid,
  .database-insight-grid,
  .database-results,
  .guide-grid,
  .files-grid,
  .robot-database-grid,
  .source-notes-section,
  .radar-section,
  .glossary-grid,
  .sponsor-section,
  .category-grid,
  .market-layout,
  .trust-section,
  .contact-strip {
    grid-template-columns: 1fr;
  }

  .quick-path-grid,
  .use-case-profile-grid,
  .profile-intel-strip,
  .home-intelligence-grid,
  .live-stats-strip,
  .live-intelligence-feed,
  .trending-robots-grid,
  .signal-update-grid,
  .buyer-guide-grid,
  .profile-stack-grid,
  .company-signal-grid,
  .home-compare-grid,
  .compare-summary-grid,
  .data-quality-grid,
  .tr-guide-grid,
  .compare-preset-grid,
  .faq-grid,
  .video-theater-grid,
  .use-case-robot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .theater-card.is-featured {
    grid-row: span 1;
  }

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

  .market-terminal-card {
    max-width: 420px;
  }

  .robotics-signal-ticker,
  .live-intelligence-board,
  .rscore-command-section,
  .leaderboard-hero,
  .signals-hero,
  .signals-command,
  .signals-filter-grid {
    grid-template-columns: 1fr;
  }

  .live-intelligence-feed,
  .robotics-signal-ticker {
    grid-column: auto;
    grid-row: auto;
  }

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

  .rscore-lab-grid,
  .catalog-leaderboard {
    grid-template-columns: 1fr;
  }

  .ticker-viewport {
    min-width: 0;
  }

  .filter-panel label {
    flex: 1 1 210px;
  }

  .clear-button {
    flex: 1 1 210px;
    justify-content: center;
  }

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

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

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

@media (max-width: 680px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 24px, 520px);
  }

  .brand {
    font-size: 24px;
  }

  .site-header {
    gap: 12px;
  }

  .header-actions {
    gap: 8px;
  }

  .intelligence-controls {
    gap: 6px;
    padding: 5px;
  }

  .live-control {
    min-height: 34px;
    padding: 0 10px;
  }

  .live-control small {
    display: none;
  }

  .language-pill,
  .nav-search-button,
  .x-cta {
    min-height: 34px;
  }

  .nav-search-button {
    min-width: 40px;
    padding: 0 10px;
  }

  .nav-search-button span {
    display: none;
  }

  .icon-button {
    width: 36px;
    height: 36px;
  }

  .join-button {
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }

  .main-nav {
    gap: 20px;
    font-size: 13px;
  }

  .nav-home,
  .nav-item > a,
  .main-nav > a {
    padding-left: 0;
    padding-right: 0;
    white-space: nowrap;
  }

  .nav-menu {
    display: none;
  }

  .hero {
    min-height: auto;
    margin-top: 8px;
    padding: 28px 18px 22px;
    border-radius: 14px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-actions {
    gap: 8px;
  }

  .hero-primary-action,
  .hero-secondary-action {
    flex: 1 1 145px;
    min-height: 44px;
    padding: 0 14px;
  }

  .stats div {
    flex: 1 1 140px;
    border-right: 0;
  }

  .hero-visual {
    height: 210px;
  }

  .robot-head {
    right: -15px;
    transform: scale(0.58);
  }

  .hero-wireframe {
    right: -10px;
    top: 20px;
    transform: scale(0.52);
  }

  .hero-radar {
    width: 132px;
    height: 132px;
    left: 12px;
    bottom: 16px;
  }

  .hero-live-signals {
    left: 12px;
    top: 44%;
    min-width: 190px;
  }

  .hero-live-signals span {
    min-height: 28px;
    padding: 0 10px;
    font-size: 10px;
  }

  .hero-orbit-card {
    min-width: 112px;
    padding: 11px;
  }

  .hero-orbit-card strong {
    font-size: 25px;
  }

  .hero-orbit-card-top {
    left: 12px;
    top: 18px;
  }

  .hero-orbit-card-bottom {
    right: 12px;
    bottom: 18px;
  }

  .live-stats-strip,
  .live-intelligence-board,
  .live-intelligence-feed,
  .trending-robots-grid,
  .home-compare-grid,
  .rscore-command-section {
    grid-template-columns: 1fr;
  }

  .rscore-snapshot-grid {
    grid-template-columns: 1fr;
  }

  .live-stats-strip article {
    min-height: 92px;
    padding: 18px;
  }

  .robotics-signal-ticker {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ticker-label {
    width: fit-content;
  }

  .ticker-track {
    animation-duration: 28s;
  }

  .trending-robots-grid a {
    min-height: 0;
  }

  .trending-robots-grid img {
    height: 220px;
  }

  .rscore-command-meter > div {
    width: 156px;
    height: 156px;
  }

  .rscore-command-meter strong {
    font-size: 56px;
  }

  .home-compare-actions a,
  .rscore-command-main a {
    width: 100%;
    margin-top: 12px;
  }

  .companies-grid,
  .info-grid,
  .brand-showcase,
  .market-hero,
  .post-grid,
  .video-grid,
  .cinema-grid,
  .index-grid,
  .database-results,
  .guide-grid,
  .files-grid,
  .robot-database-grid,
  .source-notes-section,
  .radar-section,
  .glossary-grid,
  .sponsor-section,
  .category-grid,
  .facts,
  .quick-path-grid,
  .use-case-profile-grid,
  .profile-intel-strip,
  .home-intelligence-grid,
  .signal-update-grid,
  .buyer-guide-grid,
  .profile-stack-grid,
  .company-signal-grid,
  .compare-summary-grid,
  .data-quality-grid,
  .tr-guide-grid,
  .compare-preset-grid,
  .faq-grid,
  .featured-robot-card,
  .video-theater-grid,
  .use-case-robot-grid,
  .robot-video-player,
  .profile-media-card,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .use-case-panel-head {
    display: grid;
  }

  .use-case-panel-head strong {
    width: 86px;
    height: 86px;
  }

  .company-card,
  .profile-main {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .profile-main > img {
    width: 92px;
    height: 92px;
  }

  .newsletter {
    gap: 16px;
    padding: 22px;
  }

  .newsletter-form-row {
    grid-template-columns: 1fr;
  }

  .newsletter form {
    display: grid;
  }

  .newsletter input {
    min-height: 52px;
  }

  .newsletter button {
    width: 100%;
    min-height: 52px;
    border-radius: 7px;
  }

  .newsletter-direct a,
  .newsletter-direct button {
    width: 100%;
  }

  .robot-price-list article {
    grid-template-columns: 1fr;
  }

  .market-hero {
    padding: 24px;
    background:
      linear-gradient(180deg, rgba(2, 8, 18, 0.9), rgba(2, 8, 18, 0.68)),
      url("assets/robot-lab.png") center / cover;
  }

  .market-hero h2 {
    font-size: 32px;
  }

  .market-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .market-summary-strip {
    grid-template-columns: 1fr;
  }

  .market-summary-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  }

  .catalog-sidebar {
    position: static;
  }

  .company-catalog-grid,
  .price-signal-grid,
  .price-board,
  .video-gallery-grid,
  .catalog-grid,
  .signal-grid {
    grid-template-columns: 1fr;
  }

  .catalog-metrics {
    grid-template-columns: 1fr;
  }

  .sponsor-section a {
    width: 100%;
  }
}

@media (max-width: 1080px) {
  .home-command-section,
  .trending-layout {
    grid-template-columns: 1fr;
  }

  .home-news-grid,
  .company-spotlight-grid,
  .humanoid-preview-grid,
  .research-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .command-card-large,
  .news-card-primary {
    grid-row: span 1;
    min-height: 260px;
  }
}

@media (max-width: 680px) {
  .home-command-section {
    padding: 20px;
  }

  .home-command-grid,
  .home-news-grid,
  .company-spotlight-grid,
  .humanoid-preview-grid,
  .trending-layout,
  .research-path-grid {
    grid-template-columns: 1fr;
  }

  .command-card,
  .news-card,
  .company-spotlight-grid a,
  .trending-stack a,
  .research-path-grid a {
    min-height: 132px;
    padding: 18px;
  }

  .command-card-large,
  .news-card-primary {
    min-height: 230px;
  }

  .home-command-lead h2 {
    font-size: 30px;
  }

  .company-spotlight-grid img {
    width: 40px;
    height: 40px;
  }

  .humanoid-preview-section {
    padding: 18px;
  }

  .humanoid-preview-card figure {
    height: 220px;
  }

  .humanoid-preview-card p {
    min-height: auto;
  }

  .humanoid-preview-actions a {
    width: 100%;
  }
}

@media (hover: none) {
  .command-card:hover,
  .news-card:hover,
  .company-spotlight-grid a:hover,
  .trending-stack a:hover,
  .research-path-grid a:hover,
  .post-grid a:hover,
  .catalog-card:hover,
  .company-card:hover,
  .video-card:hover,
  .humanoid-preview-card:hover,
  .featured-robot-actions a:hover,
  .humanoid-preview-actions a:hover,
  .newsletter button:hover {
    transform: none;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  }

  a:active,
  button:active {
    transform: scale(0.985);
  }
}

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

@supports (content-visibility: auto) {
  .live-stats-strip,
  .robotics-signal-ticker,
  .trending-robots-section,
  .rscore-command-section,
  .home-compare-section,
  .home-command-section,
  .home-news-section,
  .company-spotlight-section,
  .trending-robotics-section,
  .humanoid-preview-section,
  .company-database-section,
  .cms-posts-section,
  .latest-posts,
  .guide-hub-section,
  .robot-database-section,
  .market-section,
  .newsletter,
  .contact-strip {
    content-visibility: auto;
    contain-intrinsic-size: 720px;
  }
}

@media (max-width: 820px) {
  body {
    font-size: 14px;
    line-height: 1.52;
    background-size: 42px 42px, 42px 42px, auto, auto, auto;
  }

  body::before {
    background:
      linear-gradient(180deg, rgba(2, 8, 18, 0), rgba(2, 8, 18, 0.48));
  }

  .site-header,
  main,
  .site-footer {
    width: min(100% - 28px, 620px);
  }

  .site-header {
    top: 0;
    align-items: center;
    gap: 12px;
    padding: 14px 0 10px;
  }

  .brand {
    min-height: 44px;
    font-size: 23px;
  }

  .brand img {
    width: 31px;
    height: 31px;
  }

  .brand-full .brand-logo-full {
    width: 154px;
  }

  .header-actions {
    gap: 8px;
    margin-left: auto;
  }

  .intelligence-controls {
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .intelligence-controls::-webkit-scrollbar {
    display: none;
  }

  .theme-toggle,
  .language-pill,
  .icon-button,
  .join-button {
    min-width: 44px;
    min-height: 44px;
  }

  .join-button {
    padding: 0 14px;
  }

  .nav-search-button {
    width: auto;
  }

  .main-nav {
    order: 3;
    display: flex;
    width: calc(100% + 28px);
    margin: 0 -14px;
    padding: 8px 14px 10px;
    gap: 8px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .nav-home,
  .nav-item > a,
  .main-nav > a {
    min-height: 40px;
    padding: 0 13px;
    border: 1px solid rgba(120, 231, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    white-space: nowrap;
    scroll-snap-align: start;
  }

  .main-nav a.active,
  .main-nav a:hover,
  .nav-item:hover > a,
  .nav-item:focus-within > a {
    background: rgba(120, 231, 255, 0.12);
  }

  .main-nav a.active::after {
    display: none;
  }

  .nav-menu {
    display: none;
  }

  .section-heading {
    gap: 9px;
    margin: 34px 0 16px;
  }

  .section-heading.compact {
    margin-top: 24px;
  }

  .section-heading p,
  .home-command-lead p,
  .command-card span,
  .news-card span,
  .company-spotlight-grid span,
  .trending-stack span,
  .research-path-grid span,
  .humanoid-preview-card span {
    font-size: 11px;
  }

  .section-heading h2 {
    font-size: clamp(25px, 7vw, 34px);
    line-height: 1.08;
  }

  .section-heading span,
  .home-command-lead > span,
  .newsletter-copy > span {
    font-size: 14px;
    line-height: 1.55;
  }

  .hero,
  .home-command-section,
  .humanoid-preview-section,
  .newsletter,
  .trust-section,
  .contact-strip,
  .database-panel,
  .market-hero,
  .catalog-hero,
  .profile-hero {
    border-radius: 10px;
  }

  .command-card,
  .news-card,
  .company-spotlight-grid a,
  .trending-stack a,
  .research-path-grid a,
  .post-grid a,
  .catalog-card,
  .company-card,
  .video-card,
  .signal-card,
  .home-intelligence-grid article,
  .signal-update-card,
  .database-result-card,
  .humanoid-preview-card,
  .guide-grid a,
  .files-grid a,
  .robot-database-grid article {
    border-radius: 10px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
  }

  .post-grid a,
  .command-card,
  .news-card,
  .company-spotlight-grid a,
  .trending-stack a,
  .research-path-grid a,
  .signal-update-card,
  .home-intelligence-grid article,
  .database-result-card,
  .guide-grid a,
  .files-grid a,
  .robot-database-grid article {
    padding: 17px;
  }

  .catalog-card-body,
  .humanoid-preview-card > div {
    padding: 17px;
  }

  .catalog-actions,
  .featured-robot-actions,
  .video-card-actions,
  .humanoid-preview-actions,
  .follow-actions {
    gap: 8px;
  }

  .catalog-actions a,
  .featured-robot-actions a,
  .video-card-actions a,
  .video-card-actions button,
  .robot-card-video button,
  .humanoid-preview-card a,
  .humanoid-preview-actions a,
  .database-result-card a,
  .sponsor-section a,
  .contact-strip > a,
  .newsletter button {
    min-height: 44px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .search-box input,
  .catalog-sidebar input,
  .filter-panel select,
  .advanced-filter-group select,
  .newsletter input {
    min-height: 48px;
    font-size: 16px;
  }

  .catalog-visual figcaption,
  .profile-visual figcaption,
  .humanoid-preview-card figcaption,
  .featured-robot-card figcaption {
    width: 62px;
    height: 62px;
    right: 12px;
    bottom: 12px;
    font-size: 20px;
  }
}

@media (max-width: 680px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 20px, 520px);
  }

  .site-header {
    gap: 8px;
  }

  .header-actions {
    gap: 6px;
  }

  .intelligence-controls {
    width: 100%;
    justify-content: space-between;
    padding: 5px;
  }

  .live-control {
    min-width: 40px;
    padding: 0 10px;
  }

  .live-control b {
    font-size: 0;
  }

  .live-control b::after {
    content: "AI";
    font-size: 11px;
  }

  .icon-button,
  .theme-toggle,
  .language-pill {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
  }

  .join-button {
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
  }

  .language-pill span {
    display: none;
  }

  .nav-search-button {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    padding: 0;
  }

  .x-cta {
    flex: 1;
    justify-content: center;
    min-width: 132px;
  }

  .main-nav {
    width: calc(100% + 20px);
    margin: 0 -10px;
    padding: 8px 10px 10px;
    font-size: 12px;
  }

  .nav-home,
  .nav-item > a,
  .main-nav > a {
    min-height: 38px;
    padding: 0 12px;
  }

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

  .hero h1 {
    font-size: clamp(34px, 11vw, 44px);
    line-height: 1.02;
  }

  .hero p {
    max-width: 100%;
  }

  .hero-primary-action,
  .hero-secondary-action,
  .search-box button {
    width: 100%;
  }

  .search-box form {
    display: grid;
    gap: 8px;
  }

  .search-box input {
    padding-right: 16px;
  }

  .search-box button {
    position: static;
    border-radius: 7px;
  }

  .stats {
    gap: 8px;
  }

  .stats div {
    min-width: 0;
    padding: 13px;
  }

  .stats strong {
    font-size: 24px;
  }

  .command-card h3,
  .news-card h3,
  .company-spotlight-grid strong,
  .trending-stack strong,
  .research-path-grid strong,
  .post-grid h3,
  .catalog-card h2,
  .database-result-card strong {
    font-size: 19px;
    line-height: 1.18;
  }

  .command-card p,
  .news-card p,
  .post-grid p,
  .catalog-card p,
  .database-result-card p,
  .humanoid-preview-card p,
  .featured-robot-card p {
    font-size: 13px;
    line-height: 1.5;
  }

  .home-intelligence-grid article,
  .signal-update-card {
    min-height: 118px;
  }

  .home-intelligence-grid strong {
    font-size: 25px;
  }

  .post-card-image,
  .catalog-visual,
  .video-thumb,
  .humanoid-preview-card figure {
    max-height: 230px;
  }

  .featured-robot-card figure {
    min-height: 230px;
  }

  .company-card,
  .profile-main {
    gap: 13px;
  }

  .company-card > img,
  .company-logo-letter,
  .company-avatar {
    width: 58px;
    height: 58px;
  }

  .catalog-actions,
  .featured-robot-actions,
  .video-card-actions,
  .humanoid-preview-actions,
  .contact-strip {
    display: grid;
    grid-template-columns: 1fr;
  }

  .catalog-actions a,
  .featured-robot-actions a,
  .video-card-actions a,
  .video-card-actions button,
  .humanoid-preview-card a,
  .humanoid-preview-actions a,
  .database-result-card a,
  .contact-strip > a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .database-insight-grid article,
  .market-summary-strip article,
  .profile-facts article,
  .catalog-metrics article {
    min-height: auto;
    padding: 15px;
  }

  .newsletter h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .leaderboard-hero {
    padding: 24px;
  }

  .leaderboard-hero h1 {
    font-size: clamp(36px, 12vw, 52px);
  }

  .signals-hero {
    padding: 22px;
  }

  .signals-hero h1 {
    font-size: clamp(34px, 13vw, 50px);
  }

  .signals-metrics,
  .signals-featured dl {
    grid-template-columns: 1fr;
  }

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

  .leaderboard-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .leaderboard-table {
    display: grid;
    min-width: 0;
    gap: 12px;
  }

  .leaderboard-head {
    display: none;
  }

  .leaderboard-row {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 16px;
    border: 1px solid rgba(120, 231, 255, 0.14);
    border-radius: 10px;
    background: rgba(2, 8, 18, 0.68);
  }

  .leaderboard-rank {
    font-size: 14px;
  }

  .leaderboard-robot strong {
    font-size: 19px;
  }

  .leaderboard-score strong {
    font-size: 30px;
  }

  .leaderboard-meta,
  .leaderboard-score,
  .leaderboard-trend {
    display: flex;
    justify-content: space-between;
    gap: 14px;
  }

  .leaderboard-meta::before,
  .leaderboard-score::before,
  .leaderboard-trend::before {
    content: attr(data-label);
    color: #7df9ff;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .leaderboard-compare {
    width: 100%;
  }

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

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

  .signals-filter-panel > strong {
    justify-self: start;
  }

  .signals-orbit {
    min-height: 260px;
  }

  .signals-row {
    grid-template-columns: 1fr;
  }

  .signals-row-side {
    justify-items: stretch;
  }

  .signals-row-side a {
    width: 100%;
  }

  .newsletter-panel {
    padding: 14px;
  }

  .site-footer {
    gap: 22px;
    padding-bottom: 28px;
  }

  .site-footer p {
    max-width: none;
  }
}

@media (max-width: 420px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 16px, 390px);
  }

  .brand {
    font-size: 21px;
  }

  .brand img {
    width: 28px;
    height: 28px;
  }

  .brand-full .brand-logo-full {
    display: none;
  }

  .brand-full .brand-logo-mini {
    display: block;
    width: 38px;
    height: 38px;
  }

  .join-button {
    display: none;
  }

  .live-control {
    display: none;
  }

  .x-cta {
    display: inline-flex;
    min-width: 132px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .section-heading h2,
  .home-command-lead h2,
  .trust-copy h2,
  .market-hero h2,
  .catalog-hero h1,
  .profile-hero h1 {
    font-size: 28px;
  }

  .hero,
  .home-command-section,
  .humanoid-preview-section,
  .newsletter,
  .trust-section,
  .contact-strip,
  .market-hero,
  .catalog-hero,
  .profile-hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .command-card,
  .news-card,
  .company-spotlight-grid a,
  .trending-stack a,
  .research-path-grid a,
  .post-grid a,
  .catalog-card-body,
  .humanoid-preview-card > div {
    padding: 15px;
  }

  .humanoid-preview-card dl div,
  .catalog-card dl div,
  .profile-facts div {
    display: grid;
    gap: 3px;
  }

  .humanoid-preview-card dd,
  .catalog-card dd {
    text-align: left;
  }
}

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

  .task-home-grid,
  .task-page-grid,
  .timeline-home-grid,
  .heatmap-home-grid,
  .heatmap-grid,
  .global-map-home-layout,
  .global-map-home-grid,
  .global-map-grid,
  .future-index-home-grid,
  .future-index-grid,
  .physical-home-grid,
  .physical-layer-grid,
  .economy-home-grid,
  .economy-layer-grid,
  .timeline-hero,
  .timeline-intelligence,
  .heatmap-hero,
  .heatmap-intelligence,
  .global-map-hero,
  .global-map-intelligence,
  .future-index-hero,
  .future-index-intelligence,
  .physical-hero,
  .physical-intelligence,
  .economy-hero,
  .economy-intelligence,
  .task-hero,
  .task-layout {
    grid-template-columns: 1fr;
  }

  .task-metrics,
  .timeline-metrics,
  .heatmap-metrics,
  .global-map-metrics,
  .future-index-metrics,
  .physical-metrics,
  .economy-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .robot-week-grid {
    grid-template-columns: 1fr;
  }

  .robot-week-bars li {
    grid-template-columns: 82px minmax(0, 1fr) 30px;
  }

  .task-hero,
  .timeline-hero,
  .heatmap-hero,
  .global-map-hero,
  .future-index-hero,
  .physical-hero,
  .economy-hero,
  .task-intel-panel,
  .task-watch-panel,
  .timeline-intelligence article,
  .timeline-intelligence aside,
  .heatmap-intelligence article,
  .heatmap-intelligence aside,
  .global-map-intelligence article,
  .global-map-intelligence aside,
  .future-index-intelligence article,
  .future-index-intelligence aside,
  .physical-intelligence article,
  .physical-intelligence aside,
  .economy-intelligence article,
  .economy-intelligence aside {
    padding: 20px;
  }

  .task-hero,
  .timeline-hero,
  .heatmap-hero,
  .global-map-hero,
  .future-index-hero,
  .physical-hero,
  .economy-hero {
    min-height: 0;
  }

  .task-hero h1,
  .timeline-hero h1,
  .heatmap-hero h1,
  .global-map-hero h1,
  .future-index-hero h1,
  .physical-hero h1,
  .economy-hero h1 {
    font-size: 34px;
  }

  .task-metrics,
  .timeline-metrics,
  .heatmap-metrics,
  .global-map-metrics,
  .future-index-metrics,
  .physical-metrics,
  .economy-metrics {
    grid-template-columns: 1fr;
  }

  .timeline-list {
    padding-left: 12px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px;
  }

  .timeline-item::before {
    left: -13px;
  }

  .task-card dl div {
    display: grid;
    gap: 3px;
  }

  .task-card dd {
    text-align: left;
  }

  .task-card a,
  .task-watch-panel a,
  .timeline-mini-card a,
  .timeline-item a,
  .timeline-intelligence a,
  .heatmap-card a,
  .heatmap-intelligence a,
  .global-map-card a,
  .global-map-intelligence a,
  .future-index-card a,
  .future-index-intelligence a,
  .physical-layer-card a,
  .physical-intelligence a,
  .economy-card a,
  .economy-intelligence a {
    width: 100%;
  }

  .heatmap-card dl div {
    display: grid;
    gap: 3px;
  }

  .global-map-card dl div {
    display: grid;
    gap: 3px;
  }

  .heatmap-card dd {
    text-align: left;
  }

  .global-map-card dd {
    text-align: left;
  }
}
