:root {
  --bg: #020812;
  --panel: rgba(17, 29, 48, 0.82);
  --panel-strong: rgba(20, 35, 57, 0.94);
  --line: rgba(148, 163, 184, 0.22);
  --text: #f7fbff;
  --muted: #aebbd0;
  --soft: #7f8ea6;
  --blue: #1677ff;
  --blue-2: #54a0ff;
  --chip: rgba(36, 104, 204, 0.22);
  --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(22, 119, 255, 0.12);
  --shadow: 0 18px 55px rgba(14, 42, 76, 0.12);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(rgba(84, 160, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84, 160, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 74% 14%, rgba(22, 119, 255, 0.2), transparent 34%),
    radial-gradient(circle at 30% 8%, rgba(47, 172, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #030914 0%, #020812 42%, #030b16 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;
}

body.light-theme {
  background:
    linear-gradient(rgba(22, 119, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 119, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 76% 12%, rgba(22, 119, 255, 0.16), transparent 34%),
    radial-gradient(circle at 22% 4%, rgba(94, 234, 212, 0.16), 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(22, 119, 255, 0.1) 28.2%, transparent 28.6% 61%, rgba(84, 160, 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(22, 119, 255, 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(84, 160, 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-note {
  border: 1px solid rgba(84, 160, 255, 0.35);
  border-radius: 8px;
  background: rgba(22, 119, 255, 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(84, 160, 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(84, 160, 255, 0.4);
  border-radius: 8px;
  background: linear-gradient(135deg, #1683ff, #0c62ee);
  color: white !important;
  padding: 0 18px;
  box-shadow: 0 12px 28px rgba(22, 119, 255, 0.24);
}

.quick-news a {
  color: inherit;
}

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

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

.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, #1677ff, #54a0ff, transparent);
}

.post-grid a:hover {
  transform: translateY(-4px);
  border-color: rgba(84, 160, 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(84, 160, 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(84, 160, 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;
  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:hover {
  transform: translateY(-4px);
  border-color: rgba(84, 160, 255, 0.58);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.24);
}

.video-thumb {
  position: relative;
  height: 178px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 72% 30%, rgba(84, 160, 255, 0.45), transparent 28%),
    linear-gradient(145deg, rgba(22, 119, 255, 0.18), rgba(7, 17, 31, 0.96)),
    url("assets/original-visuals/humanoid-profile-blueprint.svg") center / cover;
}

.video-thumb.figure {
  background:
    radial-gradient(circle at 68% 34%, rgba(84, 160, 255, 0.45), transparent 28%),
    linear-gradient(145deg, rgba(22, 119, 255, 0.16), rgba(7, 17, 31, 0.96)),
    url("assets/original-visuals/robot-hand-interface.svg") center / cover;
}

.video-thumb.atlas {
  background:
    radial-gradient(circle at 70% 30%, rgba(84, 160, 255, 0.42), transparent 28%),
    linear-gradient(145deg, rgba(22, 119, 255, 0.14), rgba(7, 17, 31, 0.96)),
    url("assets/original-visuals/data-constellation.svg") center / cover;
}

.video-thumb.unitree {
  background:
    radial-gradient(circle at 70% 30%, rgba(84, 160, 255, 0.42), transparent 28%),
    linear-gradient(145deg, rgba(22, 119, 255, 0.14), rgba(7, 17, 31, 0.96)),
    url("assets/original-visuals/neural-city-grid.svg") center / cover;
}

.video-thumb.digit {
  background:
    radial-gradient(circle at 70% 30%, rgba(84, 160, 255, 0.42), transparent 28%),
    linear-gradient(145deg, rgba(22, 119, 255, 0.14), rgba(7, 17, 31, 0.96)),
    url("assets/original-visuals/robot-hand-interface.svg") center / cover;
}

.video-thumb.neo {
  background:
    radial-gradient(circle at 70% 30%, rgba(84, 160, 255, 0.42), transparent 28%),
    linear-gradient(145deg, rgba(22, 119, 255, 0.14), rgba(7, 17, 31, 0.96)),
    url("assets/original-visuals/humanoid-profile-blueprint.svg") center / cover;
}

.video-thumb span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, #1683ff, #0c62ee);
  box-shadow: 0 12px 32px rgba(22, 119, 255, 0.36);
}

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

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,
.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, #1677ff, #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;
}

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

.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, #1677ff, #54a0ff, transparent);
}

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

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

.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(84, 160, 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 .index-grid a,
body.light-theme .guide-grid a,
body.light-theme .files-grid a,
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 .index-grid span,
body.light-theme .guide-grid small,
body.light-theme .files-grid small,
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 .index-grid strong,
body.light-theme .guide-grid strong,
body.light-theme .files-grid strong,
body.light-theme .radar-list strong {
  color: #162235;
}

.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(84, 160, 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(22, 119, 255, 0.08);
}

.cinema-card:hover {
  transform: translateY(-4px);
  border-color: rgba(84, 160, 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(22, 119, 255, 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(22, 119, 255, 0.08);
  padding: 15px 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 16px;
  background: rgba(2, 8, 18, 0.78);
  backdrop-filter: blur(18px);
}

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(22, 119, 255, 0.22));
}

.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: 34px;
  font-size: 14px;
  font-weight: 720;
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  padding: 8px 0 14px;
}

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

.main-nav a.active,
.main-nav a:hover {
  color: var(--blue-2);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--blue);
}

.header-actions {
  gap: 14px;
}

.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: 48px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 3px;
  color: #07111d;
  background: linear-gradient(135deg, #111d30, #06101d);
  border: 1px solid rgba(84, 160, 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: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dbeafe;
  box-shadow: 0 0 18px rgba(84, 160, 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(22, 119, 255, 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, #1683ff, #0c62ee);
  box-shadow: 0 12px 30px rgba(22, 119, 255, 0.26);
  font-weight: 780;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 34px;
  min-height: 390px;
  padding: 54px 0 22px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(84, 160, 255, 0.7), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

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 p {
  max-width: 560px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.58;
}

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

.hero-kicker {
  width: fit-content;
  margin-bottom: 14px !important;
  padding: 8px 12px;
  color: #b9d7ff !important;
  background: rgba(22, 119, 255, 0.14);
  border: 1px solid rgba(84, 160, 255, 0.26);
  border-radius: 999px;
  font-size: 13px !important;
  font-weight: 820;
}

body.light-theme .hero-kicker {
  color: #0f5ec8 !important;
  background: rgba(22, 119, 255, 0.1);
}

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

.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: 49px;
  padding: 0 54px 0 18px;
  color: var(--text);
  background: rgba(22, 33, 52, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.42);
  border-radius: 7px;
  outline: 0;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

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: 44px;
  height: 49px;
  display: grid;
  place-items: center;
  color: var(--text);
  border: 0;
  background: transparent;
  cursor: pointer;
}

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

.stats div {
  position: relative;
  display: grid;
  grid-template-columns: 24px auto;
  column-gap: 12px;
  align-items: center;
  min-width: 110px;
  padding-right: 24px;
  border-right: 1px solid var(--line);
}

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

.stats div:hover::before {
  opacity: 1;
}

.stats div:last-child {
  border-right: 0;
}

.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: 10px;
  right: -24px;
  bottom: 0;
  width: 58%;
  min-width: 560px;
  pointer-events: none;
}

.data-wave {
  position: absolute;
  right: -120px;
  bottom: 18px;
  width: 760px;
  height: 210px;
  opacity: 0.72;
  background-image: radial-gradient(circle, rgba(22, 119, 255, 0.8) 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: 90px;
  top: 34px;
  width: 360px;
  height: 360px;
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.55));
}

.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(22, 119, 255, 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, #1677ff, #54a0ff, 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(22, 119, 255, 0.18);
  border: 1px solid rgba(84, 160, 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(22, 119, 255, 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(22, 119, 255, 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(84, 160, 255, 0.28);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 49%, rgba(84, 160, 255, 0.18) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(84, 160, 255, 0.18) 50%, transparent 51%);
  box-shadow: inset 0 0 34px rgba(22, 119, 255, 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(84, 160, 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(84, 160, 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(22, 119, 255, 0.26), rgba(84, 160, 255, 0.08)),
    rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(84, 160, 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(84, 160, 255, 0.24), transparent 34%),
    url("assets/robologai-ai-robot-clean.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(84, 160, 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(84, 160, 255, 0.28);
  border-radius: 8px;
  background: rgba(22, 119, 255, 0.09);
  color: var(--muted);
}

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

.market-intelligence-panel {
  overflow: hidden;
  border: 1px solid rgba(84, 160, 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(84, 160, 255, 0.48);
  background: rgba(84, 160, 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, #1677ff); }

.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(84, 160, 255, 0.36);
  color: #bfdbfe;
  background: rgba(84, 160, 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;
}

.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(84, 160, 255, 0.18), transparent 34%),
    url("assets/robologai-ai-robot-clean.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(22, 119, 255, 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;
  grid-template-columns: 80px minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: 24px;
  align-items: center;
  padding: 28px;
  margin: 20px 0 34px;
}

.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: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  color: #d9e8ff;
  background: rgba(148, 163, 184, 0.18);
  border-radius: 50%;
}

.mail-icon svg {
  width: 36px;
  height: 36px;
}

.newsletter h2 {
  margin-bottom: 8px;
  font-size: 21px;
}

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

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

.follow-actions a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(84, 160, 255, 0.32);
  border-radius: 8px;
  color: #eef6ff;
  background: rgba(22, 119, 255, 0.14);
  font-weight: 850;
  text-align: center;
}

body.light-theme .follow-actions a {
  color: #17304f;
  background: rgba(22, 119, 255, 0.08);
}

.newsletter form {
  position: relative;
  justify-content: flex-end;
}

.newsletter input {
  width: 100%;
  min-height: 48px;
  padding: 0 154px 0 16px;
  color: var(--text);
  background: rgba(2, 8, 18, 0.28);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 7px;
  outline: 0;
}

.newsletter button {
  position: absolute;
  right: 0;
  min-width: 142px;
  border-radius: 0 7px 7px 0;
}

.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(22, 119, 255, 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(22, 119, 255, 0.12), rgba(255, 255, 255, 0.86));
}

body.light-theme .contact-strip p {
  color: #43566c;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.2fr;
  gap: 34px;
  padding: 0 0 34px;
}

.footer-brand {
  display: block;
  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;
}

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

  .hero {
    grid-template-columns: 1fr;
    padding-top: 34px;
    gap: 22px;
  }

  .hero-visual {
    position: relative;
    right: auto;
    width: 100%;
    min-width: 0;
    height: 260px;
    order: 2;
  }

  .robot-head {
    right: 12%;
    top: 0;
    transform: scale(0.78);
    transform-origin: top right;
  }

  .data-wave {
    bottom: -24px;
  }

  .filter-panel,
  .newsletter {
    flex-wrap: wrap;
    grid-template-columns: 1fr;
  }

  .info-grid,
  .editorial-section,
  .brand-showcase,
  .market-hero,
  .post-grid,
  .video-grid,
  .cinema-grid,
  .index-grid,
  .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;
  }

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

  .market-terminal-card {
    max-width: 420px;
  }

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

  .icon-button {
    width: 36px;
    height: 36px;
  }

  .join-button {
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }

  .main-nav {
    gap: 20px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 37px;
  }

  .stats div {
    border-right: 0;
  }

  .hero-visual {
    height: 210px;
  }

  .robot-head {
    right: -15px;
    transform: scale(0.58);
  }

  .companies-grid,
  .info-grid,
  .brand-showcase,
  .market-hero,
  .post-grid,
  .video-grid,
  .cinema-grid,
  .index-grid,
  .guide-grid,
  .files-grid,
  .robot-database-grid,
  .source-notes-section,
  .radar-section,
  .glossary-grid,
  .sponsor-section,
  .category-grid,
  .facts,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .company-card,
  .profile-main {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .profile-main > img {
    width: 92px;
    height: 92px;
  }

  .newsletter {
    gap: 16px;
  }

  .follow-actions {
    grid-template-columns: 1fr;
  }

  .newsletter form {
    display: block;
  }

  .newsletter input {
    padding-right: 16px;
  }

  .newsletter button {
    position: static;
    width: 100%;
    margin-top: 10px;
    border-radius: 7px;
  }

  .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/robologai-ai-robot-clean.png") center / cover;
  }

  .market-hero h2 {
    font-size: 36px;
  }

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

  .sponsor-section a {
    width: 100%;
  }
}
