@import url("./tokens.css");

:root {
  --brand-navy: var(--vr-color-ink);
  --brand-cyan: var(--vr-color-brand-cyan);
  --brand-blue: var(--vr-color-brand-blue);
  --brand-violet: var(--vr-color-brand-violet);
  --brand-magenta: var(--vr-color-brand-magenta);
  --brand-gradient: var(--vr-gradient-brand);
  --brand-focus: var(--vr-focus-ring);
  --web-max-width: var(--vr-shell-width);
  --web-panel-border: rgba(255, 255, 255, 0.12);
  --web-panel-bg: rgba(255, 255, 255, 0.06);
  --web-panel-bg-strong: rgba(255, 255, 255, 0.1);
  --web-text: #f8fafc;
  --web-muted-text: #cbd5e1;
  --web-subtle-text: #a9b7ca;
  font-family: var(--vr-font-family);
  line-height: var(--vr-line-height);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--vr-color-surface-muted);
  color: var(--vr-color-text);
}

a {
  color: inherit;
}

main {
  box-sizing: border-box;
  min-height: 100vh;
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

header {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: 3rem;
  line-height: 1.05;
  letter-spacing: 0;
}

p {
  max-width: 680px;
  margin: 0;
  color: #4b5563;
  font-size: 1rem;
}

.brand,
.brand-lockup {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand {
  color: #0f766e;
}

.brand-lockup {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.7rem;
  color: #172033;
  text-decoration: none;
}

.brand-lockup img {
  width: var(--vr-shell-mark-size);
  height: var(--vr-shell-mark-size);
  border-radius: var(--vr-radius-card);
  box-shadow: 0 0 24px rgba(21, 215, 244, 0.2);
}

.brand-lockup span {
  background: var(--brand-gradient);
  background-clip: text;
  color: transparent;
}

.brand-lockup:focus-visible {
  border-radius: 8px;
  outline: 3px solid var(--brand-focus);
  outline-offset: 4px;
}

.filters,
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin: 1.5rem 0;
}

.filters a,
.pagination a,
.pagination span {
  border: 1px solid #d1d5db;
  border-radius: var(--vr-radius-control);
  padding: 0.55rem 0.8rem;
  background: #ffffff;
  color: #1f2937;
  font-size: 0.95rem;
  text-decoration: none;
}

.filters a[aria-current="page"] {
  border-color: var(--brand-blue);
  background: #e9f8ff;
  color: #073f6d;
  font-weight: 700;
}

.feed {
  display: grid;
  gap: 1rem;
}

article {
  border: 1px solid var(--vr-color-border);
  border-radius: var(--vr-radius-card);
  background: var(--vr-color-surface);
  padding: 1.25rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

article h2 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 0.85rem;
  color: #526071;
  font-size: 0.9rem;
}

.options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.options li {
  border-radius: 999px;
  background: #edf2f7;
  padding: 0.35rem 0.7rem;
  color: #243041;
  font-size: 0.9rem;
}

.options a {
  text-decoration: none;
}

.content-detail {
  display: grid;
  gap: 1.5rem;
}

.event-detail {
  display: grid;
  gap: 1.5rem;
}

.event-detail-media {
  aspect-ratio: 16 / 7;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #101827;
}

.event-detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-detail header {
  margin-bottom: 0;
}

.event-detail section {
  display: grid;
  gap: 0.75rem;
}

.event-detail h2 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.discovery-topic-detail {
  display: grid;
  gap: 1.5rem;
}

.discovery-topic-detail section,
.discovery-topic-header {
  display: grid;
  gap: 0.85rem;
}

.discovery-topic-detail h2,
.discovery-topic-echo-list h3 {
  margin: 0;
  color: var(--web-text);
  line-height: 1.25;
}

.discovery-topic-detail h2 {
  font-size: 1.1rem;
}

.discovery-topic-echo-list h3 {
  font-size: 1rem;
}

.discovery-topic-media {
  aspect-ratio: 16 / 7;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #101827;
}

.discovery-topic-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.discovery-topic-summary {
  border: 1px solid var(--web-panel-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
}

.discovery-topic-summary p {
  margin: 0;
}

.discovery-topic-summary ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.4rem 0.5rem;
  width: auto;
  max-width: 100%;
  margin: 0.4rem 0 0;
  padding: 0;
  list-style: none;
}

.tag-cloud li {
  flex: 0 1 auto;
  width: auto;
  max-width: 100%;
}

.discovery-topic-summary li {
  max-width: 100%;
}

.discovery-topic-summary li,
.tag-cloud a {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--web-panel-border);
  border-radius: 999px;
  background: rgba(237, 242, 247, 0.9);
  color: #243041;
  line-height: 1.2;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.discovery-topic-summary li {
  min-height: 2rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.9rem;
}

.tag-cloud a {
  width: auto;
  max-width: 100%;
  min-height: 1.75rem;
  padding: 0.25rem 0.6rem;
  font-size: 0.82rem;
}

.tag-cloud a:hover,
.tag-cloud a:focus-visible {
  border-color: var(--brand-cyan);
  color: #102034;
}

.discovery-topic-list,
.discovery-topic-echo-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.discovery-topic-list li,
.discovery-topic-echo-list li {
  display: grid;
  gap: 0.6rem;
  border: 1px solid var(--web-panel-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
}

.discovery-topic-list a {
  color: var(--web-text);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
}

.discovery-topic-list a:hover,
.discovery-topic-list a:focus-visible {
  color: var(--brand-cyan);
}

.discovery-topic-signals .stat-grid {
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
}

.discovery-topic-signals .stat-grid div {
  border-color: var(--web-panel-border);
  background: rgba(255, 255, 255, 0.05);
}

.aura-disclosure-page {
  gap: 1.5rem;
}

.aura-disclosure-page section {
  display: grid;
  gap: 0.75rem;
}

.aura-disclosure-page h2 {
  margin: 0;
  color: var(--web-text);
  font-size: 1rem;
  line-height: 1.25;
}

.aura-disclosure-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 0.75rem;
  margin: 0;
}

.aura-disclosure-list div {
  border: 1px solid var(--web-panel-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 1rem;
}

.aura-disclosure-list dt {
  color: var(--web-text);
  font-weight: 900;
}

.aura-disclosure-list dd {
  margin: 0.35rem 0 0;
  color: var(--web-muted-text);
  line-height: 1.5;
}

.content-detail header {
  margin-bottom: 0;
}

.content-detail section {
  display: grid;
  gap: 1rem;
}

.content-detail p {
  max-width: 760px;
}

.content-related-link-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.content-related-link-card {
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  min-height: 5.25rem;
  height: 100%;
  border: 1px solid var(--vr-color-border);
  border-radius: var(--vr-radius-card);
  background: #ffffff;
  padding: 0.85rem;
  color: var(--vr-color-text);
  text-decoration: none;
  transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.content-related-link-card:hover,
.content-related-link-card:focus-visible {
  border-color: #0f766e;
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.12);
  transform: translateY(-1px);
  outline: none;
}

.content-related-link-card-unavailable,
.content-related-link-card-unavailable:hover {
  border-color: #d9dee8;
  background: #f8fafc;
  color: #526071;
  box-shadow: none;
  transform: none;
}

.content-related-link-icon {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 8px;
  background: #e6f6f4;
  color: #0f766e;
  font-weight: 800;
}

.content-related-link-copy {
  display: grid;
  min-width: 0;
  gap: 0.18rem;
}

.content-related-link-type,
.content-related-link-description,
.content-related-link-affordance {
  color: #526071;
  font-size: 0.78rem;
  line-height: 1.25;
}

.content-related-link-type,
.content-related-link-affordance {
  font-weight: 800;
  text-transform: uppercase;
}

.content-related-link-title {
  color: var(--vr-color-text);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.content-related-link-description {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.content-related-link-affordance {
  align-self: start;
  max-width: 6.5rem;
  overflow-wrap: anywhere;
  text-align: right;
}

.leaderboard-list,
.badge-list,
.source-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.leaderboard-list li,
.badge-list li {
  display: grid;
  gap: 0.35rem;
  border: 1px solid var(--vr-color-border);
  border-radius: var(--vr-radius-card);
  background: var(--vr-color-surface);
  padding: 1rem;
}

.leaderboard-list a {
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
}

.rank {
  color: #0f766e;
  font-weight: 800;
}

.profile-detail {
  display: grid;
  gap: 1.5rem;
}

.profile-detail section {
  display: grid;
  gap: 0.85rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin: 0;
}

.stat-grid div {
  border: 1px solid #d9dee8;
  border-radius: 8px;
  background: #ffffff;
  padding: 0.9rem;
}

.stat-grid dt {
  color: #526071;
  font-size: 0.85rem;
}

.stat-grid dd {
  margin: 0.2rem 0 0;
  font-size: 1.4rem;
  font-weight: 800;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  overflow-wrap: anywhere;
}

.data-table th,
.data-table td {
  border-bottom: 1px solid #d9dee8;
  padding: 0.75rem;
  text-align: left;
}

.source-list li {
    display: grid;
    gap: 0.65rem;
    border-left: 3px solid #0f766e;
    padding-left: 0.85rem;
  }

.source-list a {
    font-weight: 700;
  }

  .source-title {
    color: inherit;
    font-size: 1rem;
    font-weight: 700;
  }

.source-list span {
    color: #526071;
    font-size: 0.9rem;
  }

.source-origin-groups {
  display: grid;
  gap: 1rem;
}

.source-origin-group {
  display: grid;
  gap: 0.85rem;
  border: 1px solid var(--vr-color-border);
  border-radius: var(--vr-radius-card);
  background: var(--vr-color-surface);
  padding: 1rem;
}

.source-origin-group-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.source-origin-group-header h3 {
  margin: 0;
  color: var(--vr-color-text);
  font-size: 1rem;
}

.source-origin-group-header p,
.source-origin-reason {
  margin: 0.2rem 0 0;
  color: #526071;
  font-size: 0.9rem;
}

.source-origin-group-header > span {
  max-width: 15rem;
  color: #0f766e;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: right;
}

.source-origin-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.source-origin-signals span {
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  padding: 0.2rem 0.55rem;
  font-size: 0.85rem;
}

  .source-list-heading {
    display: grid;
    grid-template-columns: 2rem minmax(0, 1fr);
    align-items: center;
    gap: 0.75rem;
  }

  .source-list-heading img,
  .source-list-fallback {
    width: 2rem;
    height: 2rem;
    border: 1px solid #d9dee8;
    border-radius: 8px;
    background: #f8fafc;
  }

  .source-list-heading img {
    object-fit: contain;
    padding: 0.25rem;
  }

  .source-list-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0f766e;
    font-size: 0.85rem;
    font-weight: 800;
  }

  .source-list-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .source-list-signals span {
    border: 1px solid #d9dee8;
    border-radius: 999px;
    background: #f8fafc;
    padding: 0.2rem 0.55rem;
  }

.empty {
  border: 1px solid #d9dee8;
  border-radius: 8px;
  background: #ffffff;
  padding: 1.5rem;
}

.notice {
  color: #7c2d12;
  font-weight: 700;
}

.private-handoff {
  align-content: center;
  gap: 1rem;
  max-width: 720px;
}

.private-app-shell {
  display: grid;
  align-content: center;
  gap: 1rem;
  max-width: 720px;
}

.web-shell,
.home-shell {
  max-width: none;
  padding: 1.25rem clamp(1rem, 3vw, 3.5rem) 4rem;
  background:
    linear-gradient(145deg, rgba(6, 8, 23, 0.98), rgba(12, 17, 35, 0.96) 54%, rgba(18, 22, 45, 0.98)),
    var(--brand-navy);
  color: var(--web-text);
}

.web-shell p,
.home-shell p {
  color: var(--web-muted-text);
}

.web-nav,
.home-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 auto 2.5rem;
  max-width: var(--web-max-width);
}

.brand-lockup-large {
  font-size: 1rem;
}

.brand-lockup-large img {
  width: 3rem;
  height: 3rem;
}

.web-nav-links,
.home-nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
}

.web-nav-links a,
.home-nav-links a,
.button-link {
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  text-decoration: none;
  font-weight: 800;
}

.web-nav-links a,
.home-nav-links a {
  color: #d8e3ef;
}

.web-nav-links a:hover,
.home-nav-links a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.button-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.button-link-primary {
  background: var(--brand-gradient);
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(21, 215, 244, 0.16);
}

.button-link-subtle {
  background: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
}

.button-link-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: #d8e3ef;
}

.web-hero,
.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: stretch;
  max-width: var(--web-max-width);
  margin: 0 auto 2rem;
  border: 1px solid var(--web-panel-border);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(224, 53, 255, 0.24), rgba(23, 141, 255, 0.2) 45%, rgba(21, 215, 244, 0.13)),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.web-hero-copy,
.home-hero-copy {
  padding: clamp(1.6rem, 5vw, 4rem);
}

.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--brand-cyan);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.web-hero h1,
.home-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 6rem);
  line-height: 0.98;
}

.hero-copy {
  max-width: 780px;
  margin-top: 1.25rem;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.web-stat-panel,
.home-stat-panel {
  display: grid;
  align-content: center;
  gap: 0.9rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(6, 8, 23, 0.5);
  border-left: 1px solid var(--web-panel-border);
}

.web-stat-panel div,
.home-stat-panel div,
.web-card,
.sidebar-card,
.opportunity-card,
.interactive-note {
  border: 1px solid var(--web-panel-border);
  border-radius: 8px;
  background: var(--web-panel-bg);
}

.web-stat-panel div,
.home-stat-panel div {
  padding: 1rem;
}

.web-stat-panel span,
.home-stat-panel span {
  display: block;
  color: var(--web-subtle-text);
  font-size: 0.85rem;
  font-weight: 800;
}

.web-stat-panel strong,
.home-stat-panel strong {
  display: block;
  margin-top: 0.25rem;
  color: #ffffff;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}

.web-layout,
.home-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(1rem, 2.5vw, 2rem);
  max-width: var(--web-max-width);
  margin: 0 auto;
}

.web-main-column,
.web-sidebar,
.home-main-column,
.home-sidebar {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.web-section-heading,
.section-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.web-section-heading h2,
.section-heading h2,
.sidebar-card h2,
.interactive-note h2 {
  margin: 0;
  color: var(--web-text);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.1;
}

.web-tabs,
.category-tabs {
  position: sticky;
  top: 0;
  z-index: 5;
  margin: 0;
  padding: 0.9rem;
  border: 1px solid var(--web-panel-border);
  border-radius: 8px;
  background: rgba(6, 8, 23, 0.86);
  backdrop-filter: blur(12px);
}

.web-tabs a,
.category-tabs a {
  border-color: var(--web-panel-border);
  background: var(--web-panel-bg);
  color: #d8e3ef;
}

.web-tabs a[aria-current="page"],
.category-tabs a[aria-current="page"] {
  border-color: var(--brand-cyan);
  background: rgba(21, 215, 244, 0.14);
  color: #d7fbff;
}

.opportunity-feed {
  gap: 1rem;
}

.home-trending-panel {
  gap: 1.25rem;
  padding: 1.25rem;
}

.home-hot-topic-band {
  gap: 1rem;
  padding: 1rem;
  border-color: var(--home-border);
  background: var(--home-gradient-card);
  box-shadow: var(--home-shadow-card);
}

.home-hot-topic-band-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.home-hot-topic-band-copy {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.home-hot-topic-band-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid hsl(3 72% 56% / 0.25);
  border-radius: 999px;
  background: hsl(3 72% 56% / 0.12);
  padding: 0.3rem 0.65rem;
  color: hsl(3 96% 73%);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-hot-topic-band-pill svg,
.home-hot-topic-band-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.home-hot-topic-band h1,
.home-hot-topic-band h2 {
  margin: 0;
  color: #f8fafc;
  font-size: 1.5rem;
  line-height: 1.15;
}

.home-hot-topic-band p,
.home-hot-topic-empty {
  margin: 0;
  color: #a8b7c8;
  line-height: 1.55;
}

.home-hot-topic-empty-muted {
  margin-top: -0.35rem;
}

.home-hot-topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-hot-topic-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--home-border);
  border-radius: 8px;
  background: hsl(220 16% 18% / 0.5);
  box-shadow: var(--home-shadow-card);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.home-hot-topic-card:hover,
.home-hot-topic-card:focus-visible {
  border-color: hsl(190 92% 52% / 0.5);
  box-shadow: var(--home-shadow-glow), var(--home-shadow-card);
  transform: translateY(-1px);
  outline: none;
}

.home-hot-topic-visual {
  position: relative;
  height: var(--vr-market-card-media-height);
  min-height: var(--vr-market-card-media-height);
  max-height: var(--vr-market-card-media-height);
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background:
    radial-gradient(circle at 28% 30%, hsl(263 74% 66% / 0.35), transparent 32%),
    linear-gradient(135deg, hsl(220 16% 18%), hsl(222 22% 10%));
}

.home-hot-topic-visual img {
  display: block;
  width: 100%;
  height: 100%;
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
}

.home-hot-topic-category {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  border-radius: 8px;
  background: hsl(222 24% 7% / 0.36);
  padding: 0.3rem 0.5rem;
  color: #ffffff;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.home-hot-topic-body {
  display: grid;
  gap: var(--vr-market-card-body-gap);
  padding: var(--vr-market-card-body-padding);
}

.home-hot-topic-body h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: #f8fafc;
  font-size: 1.15rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-hot-topic-body p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: #a8b7c8;
  line-height: 1.5;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.home-hot-topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-hot-topic-tags li {
  border: 1px solid hsl(190 92% 52% / 0.18);
  border-radius: 999px;
  background: hsl(190 92% 52% / 0.08);
  padding: 0.22rem 0.55rem;
  color: #d5f7ff;
  font-size: 0.78rem;
  font-weight: 800;
}

.home-hot-topic-meta {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding-top: 0.15rem;
  border-top: 1px solid var(--home-border);
}

.home-hot-topic-meta div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.home-hot-topic-meta dt {
  color: #a8b7c8;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-hot-topic-meta dd {
  margin: 0;
  color: #f8fafc;
  font-size: 0.88rem;
  font-weight: 900;
}

.home-hot-topic-updated {
  padding-top: 0.15rem;
}

.home-trending-header,
.home-trending-grid,
.home-trending-tags {
  display: grid;
  gap: 1rem;
}

.home-trending-header {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
}

.home-trending-header span,
.home-trending-tags > span {
  color: #a8b7c8;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-trending-header h2,
.home-trending-section h3 {
  margin: 0;
  color: #f8fafc;
}

.home-trending-header p,
.home-trending-section p,
.home-trending-empty {
  margin: 0;
  color: #a8b7c8;
  line-height: 1.55;
}

.home-trending-header > strong {
  border: 1px solid var(--web-panel-border);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  color: #d8e3ef;
  font-size: 0.78rem;
}

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

.home-trending-section {
  display: grid;
  align-content: start;
  gap: 0.7rem;
}

.home-trending-section h3 {
  font-size: 1rem;
}

.home-trending-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  padding: 0.85rem;
  border: 1px solid var(--web-panel-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  text-decoration: none;
}

.home-trending-item:hover {
  border-color: rgba(21, 215, 244, 0.45);
  background: rgba(21, 215, 244, 0.08);
}

.home-trending-section-chatter .home-trending-item:hover {
  border-color: rgba(224, 53, 255, 0.45);
  background: rgba(224, 53, 255, 0.08);
}

.home-trending-item span,
.home-trending-item strong {
  display: grid;
  gap: 0.2rem;
}

.home-trending-item b {
  overflow: hidden;
  color: #f8fafc;
  font-size: 0.95rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-trending-item em,
.home-trending-item small {
  color: #a8b7c8;
  font-style: normal;
}

.home-trending-item em {
  display: -webkit-box;
  overflow: hidden;
  font-size: 0.85rem;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-trending-item strong {
  min-width: 6rem;
  align-content: start;
  color: #f8fafc;
  font-size: 0.9rem;
  text-align: right;
}

.home-trending-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.home-trending-tag {
  border: 1px solid rgba(21, 215, 244, 0.28);
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
  background: rgba(21, 215, 244, 0.12);
  color: #bff7ff;
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
}

.home-trending-tag-chatter {
  border-color: rgba(224, 53, 255, 0.28);
  background: rgba(224, 53, 255, 0.14);
  color: #f7c8ff;
}

.web-card,
.opportunity-card {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.opportunity-card h3 {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.18;
}

.opportunity-card h3 a {
  color: #f8fafc;
  text-decoration: none;
}

.opportunity-card h3 a:hover {
  color: var(--brand-cyan);
}

.web-card-header,
.opportunity-card-header,
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.category-pill,
.trend-pill {
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 900;
}

.category-pill {
  background: rgba(21, 215, 244, 0.12);
  color: #bff7ff;
  text-decoration: none;
}

.trend-pill {
  background: rgba(224, 53, 255, 0.16);
  color: #f7c8ff;
}

.home-market-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.public-page-panel .home-market-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-market-tags a {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #dbeafe;
  padding: 0.25rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.home-market-tags a:hover {
  border-color: rgba(21, 215, 244, 0.55);
  color: #bff7ff;
}

.web-shell .options li,
.home-shell .options li {
  background: var(--web-panel-bg-strong);
  color: #e5edf7;
}

.card-action {
  justify-self: start;
  color: var(--brand-cyan);
  font-weight: 900;
  text-decoration: none;
}

.share-actions {
  position: relative;
  display: inline-block;
  margin-top: 1rem;
  color: var(--web-text);
}

.share-actions summary {
  list-style: none;
}

.share-actions summary::-webkit-details-marker {
  display: none;
}

.share-actions-trigger {
  display: inline-flex;
  min-height: 2.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--web-muted-text);
  padding: 0.45rem 0.65rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.share-actions-trigger:hover,
.share-actions[open] .share-actions-trigger {
  border-color: rgba(21, 215, 244, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: var(--web-text);
}

.share-actions-trigger:focus-visible {
  outline: 3px solid var(--brand-focus);
  outline-offset: 2px;
}

.share-actions-trigger-icon {
  display: inline-grid;
  width: 1rem;
  height: 1rem;
  place-items: center;
  border-radius: 999px;
  color: var(--brand-cyan);
  font-size: 0.95rem;
  line-height: 1;
}

.share-actions[open] .share-actions-trigger-icon {
  transform: rotate(45deg);
}

.share-actions-panel {
  position: absolute;
  z-index: 30;
  top: calc(100% + 0.5rem);
  left: 0;
  display: grid;
  box-sizing: border-box;
  width: min(20rem, calc(100vw - 2rem));
  gap: 0.6rem;
  border: 1px solid var(--web-panel-border);
  border-radius: 8px;
  background: rgba(9, 13, 28, 0.98);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  padding: 0.85rem;
}

.home-market-card .share-actions-panel {
  right: 0;
  left: auto;
}

.share-actions-header,
.share-action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.share-actions-header {
  justify-content: space-between;
}

.share-actions h2 {
  margin: 0;
  color: var(--web-text);
  font-size: 1rem;
  letter-spacing: 0;
}

.share-url {
  max-width: none;
  overflow-wrap: anywhere;
  margin: 0;
  border: 1px solid var(--web-panel-border);
  border-radius: 8px;
  background: rgba(6, 8, 23, 0.34);
  padding: 0.55rem 0.6rem;
  color: var(--web-muted-text);
  font-size: 0.78rem;
  line-height: 1.35;
}

.share-action-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.share-action-row button,
.share-target-grid a,
.share-native {
  box-sizing: border-box;
  display: inline-flex;
  min-height: 2.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: 1px solid var(--web-panel-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
  padding: 0.45rem 0.65rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.share-action-row button:hover,
.share-target-grid a:hover,
.share-native:hover {
  border-color: rgba(21, 215, 244, 0.45);
  background: rgba(21, 215, 244, 0.12);
}

.share-action-row button:focus-visible,
.share-target-grid a:focus-visible,
.share-native:focus-visible {
  outline: 3px solid var(--brand-focus);
  outline-offset: 2px;
}

.share-status {
  min-height: 1.25rem;
  margin: 0;
  color: var(--web-muted-text);
  font-size: 0.78rem;
}

.share-status:not([data-state]) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.share-status[data-state="success"] {
  color: #86efac;
}

.share-status[data-state="error"] {
  color: #fca5a5;
}

.share-target-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.web-card.sidebar-card,
.web-card.interactive-note,
.sidebar-card,
.interactive-note {
  padding: 1.25rem;
}

.sidebar-card {
  display: grid;
  gap: 1rem;
}

.feature-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding-left: 1.1rem;
  color: #d8e3ef;
}

.interactive-note {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--web-max-width);
  margin: 1.25rem auto 0;
}

.public-page-panel {
  display: grid;
  gap: 1.25rem;
  max-width: var(--web-max-width);
  margin: 0 auto;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.public-page-panel section {
  display: grid;
  gap: 0.75rem;
}

.public-page-panel h3 {
  margin: 0;
  color: var(--web-text);
  font-size: 0.95rem;
  line-height: 1.35;
}

.public-page-panel ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding-left: 1.25rem;
  color: var(--web-muted-text);
  line-height: 1.6;
}

.policy-updated {
  margin: 0;
  color: var(--web-text);
  font-weight: 900;
}

.public-legal-footer {
  max-width: var(--web-max-width);
  margin: 1.5rem auto 0;
  padding: 0.85rem 0 0;
  border-top: 1px solid var(--web-panel-border);
}

.public-legal-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  align-items: center;
  justify-content: center;
}

.public-legal-footer a {
  border-radius: 8px;
  color: var(--web-muted-text);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.public-legal-footer a:hover,
.public-legal-footer a:focus-visible {
  color: var(--web-text);
  text-decoration: underline;
}

.public-page-header {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 0;
}

.public-page-header h1 {
  max-width: 980px;
  color: var(--web-text);
  font-size: clamp(2rem, 5vw, 4rem);
}

.public-list-card {
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.content-feed-empty {
  display: grid;
  gap: 0.65rem;
  border-style: dashed;
  background: rgba(255, 255, 255, 0.92);
}

.content-feed-empty h2 {
  margin: 0;
  color: var(--web-text);
  font-size: 1.25rem;
  letter-spacing: 0;
}

.content-feed-empty p {
  margin: 0;
}

.content-empty-label {
  color: var(--brand-cyan);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.content-empty-message {
  max-width: 62ch;
}

.content-feed-empty a {
  color: var(--brand-cyan);
  font-weight: 800;
}

.web-shell .leaderboard-list li,
.web-shell .badge-list li,
.web-shell .stat-grid div {
  border-color: var(--web-panel-border);
  background: var(--web-panel-bg-strong);
  color: var(--web-text);
}

.web-shell .leaderboard-list a,
.web-shell .content-detail a,
.web-shell .event-detail a,
.web-shell .profile-detail a,
.web-shell .public-page-panel a {
  color: var(--brand-cyan);
}

.web-shell .data-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}

.web-shell .data-table th,
.web-shell .data-table td {
  border-bottom: 1px solid var(--web-panel-border);
  padding: 0.7rem;
  text-align: left;
}

.web-shell .data-table th {
  color: var(--web-text);
}

.web-shell .source-origin-group {
  border-color: var(--web-panel-border);
  background: var(--web-panel-bg-strong);
  color: var(--web-text);
}

.web-shell .source-origin-group-header p,
.web-shell .source-origin-reason {
  color: var(--web-muted-text);
}

.web-shell .source-origin-group-header > span {
  color: var(--brand-cyan);
}

.web-shell .source-origin-signals span {
  border-color: var(--web-panel-border);
  background: rgba(21, 215, 244, 0.1);
  color: #bff7ff;
}

.web-shell .source-list a {
  color: var(--brand-cyan);
}

.web-shell .source-list .source-title {
  color: var(--web-text);
}

.web-shell .source-list-heading img,
.web-shell .source-list-fallback {
  border-color: var(--web-panel-border);
  background: rgba(255, 255, 255, 0.06);
}

.web-shell .source-list-fallback {
  color: var(--brand-cyan);
}

.web-shell .source-list-signals span {
  border-color: var(--web-panel-border);
  background: var(--web-panel-bg);
  color: var(--web-muted-text);
}

.web-shell .empty {
  border-color: var(--web-panel-border);
  background: var(--web-panel-bg);
  color: var(--web-muted-text);
}

.web-shell .pagination,
.home-shell .pagination {
  margin-bottom: 0;
}

.web-shell .pagination a,
.web-shell .pagination span,
.home-shell .pagination a,
.home-shell .pagination span {
  border-color: var(--web-panel-border);
  background: var(--web-panel-bg);
  color: var(--web-text);
}

.handoff-link {
  justify-self: start;
  margin-top: 0.75rem;
  border-radius: 8px;
  background: var(--brand-navy);
  color: #ffffff;
  padding: 0.8rem 1rem;
  text-decoration: none;
  font-weight: 700;
}

.home-shell {
  --home-background: hsl(222 24% 7%);
  --home-foreground: hsl(210 40% 98%);
  --home-card: hsl(222 22% 10%);
  --home-card-hover: hsl(222 20% 14%);
  --home-border: hsl(220 16% 22%);
  --home-muted: hsl(215 18% 72%);
  --home-primary: hsl(190 92% 52%);
  --home-primary-foreground: hsl(222 26% 8%);
  --home-accent: hsl(263 74% 66%);
  --home-success: hsl(151 64% 42%);
  --home-danger: hsl(329 84% 62%);
  --home-shell-width: var(--vr-shell-width);
  --home-gradient-primary: var(--vr-gradient-brand);
  --home-gradient-secondary: linear-gradient(135deg, hsl(190 82% 42%) 0%, hsl(263 74% 66%) 100%);
  --home-gradient-success: linear-gradient(135deg, hsl(151 64% 42%) 0%, hsl(190 82% 42%) 100%);
  --home-gradient-card: linear-gradient(145deg, var(--home-card) 0%, var(--home-card-hover) 100%);
  --home-shadow-card: var(--vr-shadow-card);
  --home-shadow-elevated: var(--vr-shadow-elevated);
  --home-shadow-glow: var(--vr-shadow-glow);
  padding: 0;
  background:
    radial-gradient(ellipse at top, hsl(190 92% 52% / 0.2) 0%, hsl(263 74% 66% / 0.16) 34%, var(--home-background) 72%),
    var(--home-background);
  color: var(--home-foreground);
}

.home-shell .web-nav,
.web-shell .viberank-shell-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(16rem, 28rem) minmax(0, auto);
  max-width: none;
  min-height: var(--vr-shell-topbar-height);
  margin: 0 0 1.5rem;
  padding: 0.5rem max(1rem, calc((100vw - var(--home-shell-width)) / 2));
  border-bottom: 1px solid var(--home-border);
  background: hsl(222 24% 7% / 0.82);
  backdrop-filter: blur(12px);
}

.home-app-nav,
.viberank-shell-nav {
  gap: 1rem;
}

.home-shell .brand-lockup-large,
.web-shell .viberank-shell-nav .brand-lockup-large {
  gap: 0.75rem;
  text-transform: none;
}

.home-shell .brand-lockup-large img,
.web-shell .viberank-shell-nav .brand-lockup-large img {
  width: var(--vr-shell-mark-size);
  height: var(--vr-shell-mark-size);
  border-radius: var(--vr-radius-card);
  box-shadow: var(--home-shadow-glow);
}

.home-shell .brand-lockup-large span,
.web-shell .viberank-shell-nav .brand-lockup-large span {
  font-size: 1.25rem;
  letter-spacing: 0;
}

.home-nav-search {
  position: relative;
  align-self: center;
}

.home-nav-search svg {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  width: 1rem;
  height: 1rem;
  transform: translateY(-50%);
  color: var(--home-muted);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  pointer-events: none;
}

.home-nav-search input {
  width: 100%;
  min-height: var(--vr-shell-control-size);
  border: 1px solid var(--home-border);
  border-radius: var(--vr-radius-card);
  background: hsl(220 18% 13%);
  color: var(--home-foreground);
  font: inherit;
  padding: 0.55rem 0.85rem 0.55rem 2.25rem;
}

.home-nav-search input::placeholder {
  color: var(--home-muted);
}

.home-nav-search input:focus-visible {
  outline: 3px solid var(--brand-focus);
  outline-offset: 2px;
}

.home-icon-nav svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.home-shell .web-nav-links a,
.web-shell .viberank-shell-nav .web-nav-links a,
.home-shell .web-nav-links .home-aura-preview,
.web-shell .viberank-shell-nav .web-nav-links .home-aura-preview,
.home-shell .web-nav-links .home-notification-button,
.web-shell .viberank-shell-nav .web-nav-links .home-notification-button {
  display: inline-flex;
  min-height: var(--vr-shell-icon-control-size);
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 0.375rem;
  color: var(--home-muted);
}

.home-shell .web-nav-links .home-nav-icon,
.web-shell .viberank-shell-nav .web-nav-links .home-nav-icon,
.home-shell .web-nav-links .home-notification-button,
.web-shell .viberank-shell-nav .web-nav-links .home-notification-button {
  width: var(--vr-shell-icon-control-size);
  padding: 0;
}

.home-nav-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.home-shell .web-nav-links .home-aura-preview,
.web-shell .viberank-shell-nav .web-nav-links .home-aura-preview {
  min-height: 2rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: hsl(174 72% 42%);
  color: var(--home-primary-foreground);
  font-weight: 900;
}

.home-shell .web-nav-links .button-link-subtle,
.web-shell .viberank-shell-nav .web-nav-links .button-link-subtle {
  background: var(--home-primary);
  color: var(--home-primary-foreground);
  box-shadow: var(--home-shadow-glow);
  min-height: var(--vr-shell-control-size);
  padding-inline: 0.85rem;
}

.home-avatar {
  display: inline-flex;
  width: var(--vr-shell-avatar-size);
  height: var(--vr-shell-avatar-size);
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--home-gradient-primary);
  color: var(--home-primary-foreground);
  font-weight: 900;
  font-size: 0.7rem;
  text-decoration: none;
  box-shadow: 0 0 0 2px hsl(190 92% 52% / 0.22);
}

.home-hero {
  grid-template-columns: minmax(0, 1fr);
  max-width: none;
  min-height: 19.75rem;
  margin: 0;
  border-radius: var(--vr-radius-hero);
  border-color: transparent;
  background: var(--home-gradient-primary);
  color: var(--home-primary-foreground);
  box-shadow: var(--home-shadow-elevated);
  position: relative;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, hsl(0 0% 100% / 0.07), transparent);
  background-size: 200% 100%;
  animation: home-shimmer 4s linear infinite;
  pointer-events: none;
}

.home-hero-copy {
  display: grid;
  align-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 4vw, 3rem);
}

.home-hero .hero-copy {
  color: hsl(222 26% 8% / 0.76);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.home-hero-title {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.8rem;
}

.home-hero-title svg {
  width: clamp(2.4rem, 5vw, 3.4rem);
  height: clamp(2.4rem, 5vw, 3.4rem);
  flex: 0 0 auto;
  fill: none;
  stroke: hsl(222 26% 8%);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.home-hero h1 {
  color: hsl(222 26% 8%);
  font-size: clamp(2.4rem, 4vw, 3rem);
  line-height: 1;
}

.home-hero-actions {
  display: grid;
  grid-template-columns: auto minmax(0, max-content);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: center;
}

.home-hero .button-link {
  min-height: 3rem;
}

.home-hero .button-link-primary {
  border-color: hsl(0 0% 100% / 0.2);
  background: hsl(0 0% 100% / 0.16);
  color: #ffffff;
  box-shadow: var(--home-shadow-card);
  backdrop-filter: blur(12px);
}

.home-hero .button-link-ghost {
  border-color: hsl(0 0% 100% / 0.2);
  background: hsl(0 0% 100% / 0.08);
  color: #ffffff;
}

.home-stat-panel {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  gap: 1rem;
  padding: 0;
  border: 0;
  background: transparent;
  position: relative;
  z-index: 1;
}

.home-stat-panel div {
  border-color: transparent;
  background: transparent;
  padding: 0.25rem 0.5rem;
  text-align: center;
}

.home-stat-panel span {
  color: hsl(222 26% 8% / 0.68);
}

.home-stat-panel strong {
  font-size: 1.875rem;
}

.home-layout {
  grid-template-columns: minmax(0, 3fr) minmax(18rem, 23.5rem);
  max-width: var(--home-shell-width);
  margin: 0 auto;
  padding: 0 var(--vr-shell-padding-inline) 2rem;
}

.home-main-column {
  gap: 1.25rem;
}

.home-feed-controls {
  display: grid;
  gap: 0.875rem;
  padding: 1rem;
  border: 1px solid var(--home-border);
  border-radius: 8px;
  background: hsl(222 22% 10% / 0.92);
  backdrop-filter: blur(12px);
}

.home-feed-controls .web-tabs {
  position: static;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.home-feed-controls .web-tabs a {
  display: inline-flex;
  min-height: 2.5rem;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-color: transparent;
  background: transparent;
  color: var(--home-muted);
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.home-feed-controls .web-tabs a:hover {
  background: var(--home-card-hover);
  color: var(--home-foreground);
}

.home-feed-controls .web-tabs a[aria-current="page"] {
  border-color: transparent;
  background: var(--home-gradient-primary);
  color: #ffffff;
  box-shadow: var(--home-shadow-glow);
}

.home-feed-sort {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: 1px solid var(--home-border);
  padding-top: 0.875rem;
}

.home-feed-sort span {
  color: var(--home-muted);
  font-size: 0.9rem;
}

.home-feed-sort strong {
  border: 1px solid var(--home-border);
  border-radius: 8px;
  background: hsl(220 18% 13%);
  color: var(--home-foreground);
  padding: 0.55rem 0.8rem;
  font-size: 0.95rem;
}

.home-featured-event {
  position: relative;
  min-height: 19rem;
  overflow: hidden;
  border-color: hsl(190 92% 52% / 0.24);
  background: #050913;
  box-shadow: 0 24px 80px hsl(0 0% 0% / 0.45), inset 0 1px 0 hsl(190 92% 78% / 0.14);
}

.home-featured-event-bg,
.home-featured-event-overlay {
  position: absolute;
  inset: 0;
}

.home-featured-event-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.home-featured-event-overlay {
  background:
    radial-gradient(circle at 38% 52%, hsl(190 92% 52% / 0.12), transparent 34%),
    linear-gradient(90deg, hsl(222 74% 4% / 0.7) 0%, hsl(222 60% 7% / 0.22) 44%, hsl(222 74% 4% / 0.52) 100%),
    linear-gradient(180deg, hsl(222 74% 4% / 0.42) 0%, transparent 42%, hsl(222 74% 4% / 0.48) 100%);
}

.home-featured-event-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(19rem, 0.88fr);
  gap: 1.25rem;
  align-items: center;
  min-height: 19rem;
  padding: 1.5rem;
}

.home-featured-event-copy {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.home-featured-event-pill,
.home-featured-event-meta span,
.home-featured-event-teams > span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid hsl(190 92% 60% / 0.42);
  background: hsl(190 92% 45% / 0.12);
  color: hsl(185 95% 78%);
  box-shadow: 0 0 28px hsl(190 92% 52% / 0.22);
}

.home-featured-event-pill {
  width: max-content;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-featured-event-pill svg,
.home-featured-event-meta svg,
.home-featured-event-teams svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

.home-featured-event h2 {
  margin: 0;
  max-width: 9ch;
  color: #ffffff;
  font-size: clamp(3.25rem, 8vw, 6.25rem);
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 0 8px 28px hsl(0 0% 0% / 0.86);
}

.home-featured-event h2 span,
.home-featured-event h2 strong {
  display: block;
}

.home-featured-event h2 strong {
  background: linear-gradient(180deg, hsl(184 100% 86%), hsl(177 77% 54%));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px hsl(185 95% 58% / 0.46);
}

.home-featured-event p {
  max-width: 38rem;
  margin: 0;
  color: hsl(220 28% 86%);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.65;
}

.home-featured-event p b {
  color: hsl(184 100% 62%);
}

.home-featured-event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.home-featured-event-meta span {
  border-color: hsl(190 92% 60% / 0.28);
  border-radius: 999px;
  background: hsl(222 74% 4% / 0.58);
  padding: 0.55rem 0.8rem;
  color: hsl(220 28% 88%);
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.home-featured-event-side {
  display: grid;
  gap: 0.85rem;
  min-width: 0;
}

.home-featured-event-match {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-height: 5.25rem;
  border: 1px solid hsl(0 0% 100% / 0.13);
  border-radius: 8px;
  background: hsl(222 74% 4% / 0.66);
  padding: 0.9rem 1rem;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 16px 40px hsl(0 0% 0% / 0.32), inset 0 1px 0 hsl(0 0% 100% / 0.06);
  backdrop-filter: blur(14px);
}

.home-featured-event-match:hover,
.home-featured-event-match:focus-visible {
  border-color: hsl(190 92% 60% / 0.5);
  background: hsl(222 50% 9% / 0.74);
}

.home-featured-event-match span,
.home-featured-event-match em {
  min-width: 0;
}

.home-featured-event-match-main,
.home-featured-event-match-copy,
.home-featured-event-flags {
  display: flex;
  min-width: 0;
}

.home-featured-event-match-main {
  align-items: center;
  gap: 0.85rem;
}

.home-featured-event-match-copy {
  flex: 1 1 auto;
  flex-direction: column;
}

.home-featured-event-flags {
  flex: 0 0 auto;
  align-items: center;
  gap: 0.45rem;
}

.home-featured-event-flags img,
.home-featured-event-flag-fallback {
  display: inline-flex;
  width: 3.75rem;
  height: 2.85rem;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid hsl(190 92% 60% / 0.18);
  border-radius: 8px;
  background: hsl(222 74% 4% / 0.58);
  box-shadow: inset 0 1px 0 hsl(0 0% 100% / 0.08);
}

.home-featured-event-flags img {
  object-fit: contain;
}

.home-featured-event-flag-fallback {
  color: hsl(185 95% 78%);
  font-size: 0.85rem;
  font-weight: 900;
}

.home-featured-event-match b,
.home-featured-event-match small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-featured-event-match b {
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.25;
}

.home-featured-event-match small {
  margin-top: 0.25rem;
  color: hsl(220 28% 80%);
  font-size: 0.85rem;
}

.home-featured-event-match em {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.4rem;
  font-style: normal;
}

.home-featured-event-match i,
.home-featured-event-teams a {
  border: 1px solid hsl(190 92% 60% / 0.24);
  border-radius: 999px;
  background: hsl(190 92% 45% / 0.12);
  color: hsl(185 95% 78%);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
  padding: 0.38rem 0.7rem;
  text-decoration: none;
}

.home-featured-event-teams {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.home-featured-event-teams > span {
  width: 2.35rem;
  height: 2.35rem;
  justify-content: center;
  border-radius: 999px;
  padding: 0;
}

.home-create-link {
  display: flex;
  min-height: 2.875rem;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--home-gradient-secondary);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--home-shadow-card);
}

.home-market-card {
  position: relative;
  gap: 0;
  padding: 0;
  overflow: visible;
  align-content: start;
  border-color: var(--home-border);
  background: var(--home-gradient-card);
  box-shadow: var(--home-shadow-card);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.home-market-card:hover,
.home-market-card:focus-within {
  border-color: hsl(190 92% 52% / 0.5);
  box-shadow: var(--home-shadow-glow), var(--home-shadow-card);
  z-index: 10;
}

.home-market-card:hover {
  transform: translateY(-1px);
}

.home-market-visual {
  position: relative;
  height: var(--vr-market-card-media-height);
  min-height: var(--vr-market-card-media-height);
  max-height: var(--vr-market-card-media-height);
  block-size: var(--vr-market-card-media-height);
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background:
    radial-gradient(circle at 28% 30%, hsl(263 74% 66% / 0.35), transparent 32%),
    linear-gradient(135deg, hsl(220 16% 18%), hsl(222 22% 10%));
}

.home-market-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(222 24% 7% / 0.82), transparent 58%);
}

.home-market-visual img {
  display: block;
  width: 100%;
  height: 100%;
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
}

.home-market-visual span {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  background: hsl(0 0% 100% / 0.2);
}

.home-market-visual span:nth-child(1) {
  top: 2rem;
}

.home-market-visual span:nth-child(2) {
  top: 4rem;
  opacity: 0.7;
}

.home-market-visual span:nth-child(3) {
  bottom: 2rem;
  left: 2rem;
  right: auto;
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid hsl(0 0% 100% / 0.22);
  border-radius: 8px;
  background: hsl(0 0% 100% / 0.1);
  backdrop-filter: blur(12px);
}

.home-market-visual strong,
.home-market-visual em {
  position: absolute;
  z-index: 1;
  border-radius: 8px;
  color: #ffffff;
  font-style: normal;
  font-weight: 900;
}

.home-market-visual strong {
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, hsl(3 72% 56%) 0%, hsl(329 84% 62%) 100%);
  padding: 0.35rem 0.55rem;
  font-size: 0.78rem;
}

.home-market-visual em {
  right: 1rem;
  bottom: 1rem;
  background: hsl(222 24% 7% / 0.36);
  padding: 0.3rem 0.5rem;
  font-size: 0.82rem;
  backdrop-filter: blur(12px);
}

.home-market-body {
  display: grid;
  gap: var(--vr-market-card-body-gap);
  padding: var(--vr-market-card-body-padding);
}

.home-market-card .opportunity-card-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
}

.home-market-card h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-market-card h3 a {
  color: inherit;
  text-decoration: none;
}

.home-market-card h3 + p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--home-muted);
  line-height: 1.5;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-author {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.65rem;
}

.home-author > span {
  display: inline-flex;
  width: var(--vr-market-card-author-size);
  height: var(--vr-market-card-author-size);
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--home-gradient-primary);
  color: var(--home-primary-foreground);
  font-weight: 900;
  box-shadow: 0 0 0 2px hsl(190 92% 52% / 0.2);
}

.home-profile-row > span {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--home-gradient-primary);
  color: var(--home-primary-foreground);
  font-weight: 900;
  box-shadow: 0 0 0 2px hsl(190 92% 52% / 0.2);
}

.home-author p {
  margin: 0;
  color: var(--home-foreground);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: var(--vr-market-card-author-line-height);
}

.home-profile-row p {
  color: var(--home-foreground);
  font-size: 1rem;
  font-weight: 800;
}

.home-author small {
  display: block;
  color: var(--home-muted);
  font-size: 0.78rem;
  line-height: var(--vr-market-card-author-line-height);
}

.home-profile-row small {
  color: var(--home-muted);
  font-size: 0.86rem;
}

.home-market-card .category-pill {
  justify-self: end;
  line-height: 1;
}

.home-market-body .share-actions {
  margin-top: 0;
}

.home-options {
  display: grid;
  gap: 0.65rem;
}

.home-options li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.5rem;
  overflow: hidden;
  border: 2px solid var(--home-border);
  border-radius: 8px;
  background: transparent;
  padding: 0.65rem 0.8rem;
}

.home-options li:hover {
  border-color: hsl(190 82% 42% / 0.5);
  background: var(--home-card-hover);
}

.home-options span,
.home-options strong {
  position: relative;
  z-index: 1;
}

.home-options span {
  color: var(--home-foreground);
  font-weight: 700;
}

.home-options strong {
  color: var(--home-muted);
  font-size: 0.9rem;
}

.home-options i {
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.4rem;
  display: block;
  height: 0.35rem;
  max-width: calc(100% - 1.6rem);
  border-radius: 999px;
  background: var(--home-gradient-secondary);
  font-style: normal;
}

.home-card-footer {
  display: grid;
  gap: 0.75rem;
  border-top: 1px solid var(--home-border);
  padding-top: 0.75rem;
}

.home-market-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 0.9rem;
  font-size: 0.9rem;
  line-height: 1.35;
}

.home-market-meta span:last-child {
  color: var(--home-accent);
  font-weight: 900;
}

.home-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 0.75rem;
}

.home-card-actions .share-actions {
  flex: 0 0 auto;
  order: 3;
}

.home-card-actions .card-action:last-child {
  margin-left: auto;
}

.home-sidebar {
  position: sticky;
  top: 5.75rem;
}

.home-stats-card {
  min-height: 14rem;
  justify-items: center;
  align-content: center;
  text-align: center;
  background: var(--home-gradient-card);
}

.home-empty-profile svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--home-muted);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.home-stats-card h2 {
  margin: 0;
  color: var(--home-foreground);
  font-size: 1.125rem;
}

.home-stats-card p {
  max-width: 15rem;
  margin: 0;
  color: var(--home-muted);
}

.home-profile-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.home-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
}

.home-stat-grid div {
  border: 1px solid var(--home-border);
  border-radius: 8px;
  background: hsl(220 16% 18% / 0.5);
  padding: 0.75rem;
}

.home-stat-grid dt {
  color: var(--home-muted);
  font-size: 0.8rem;
}

.home-stat-grid dd {
  margin: 0.15rem 0 0;
  color: var(--home-foreground);
  font-size: 1.2rem;
  font-weight: 900;
}

.home-interactive-note {
  max-width: var(--home-shell-width);
  margin: 0 auto;
}

@keyframes home-shimmer {
  from {
    background-position: -200% 0;
  }

  to {
    background-position: 200% 0;
  }
}

@media (max-width: 900px) {
  .web-hero,
  .web-layout,
  .home-hero,
  .home-layout {
    grid-template-columns: 1fr;
  }

  .web-stat-panel,
  .home-stat-panel {
    border-top: 1px solid var(--web-panel-border);
    border-left: 0;
  }

  .home-stat-panel {
    border-top: 0;
  }

  .home-shell .web-nav,
  .web-shell .viberank-shell-nav,
  .home-sidebar,
  .home-feed-controls {
    position: static;
  }

  .home-shell .web-nav,
.web-shell .viberank-shell-nav {
    grid-template-columns: 1fr;
  }

  .home-icon-nav {
    justify-content: flex-start;
  }

  .home-layout {
    padding-bottom: 2rem;
  }

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

  .home-hot-topic-band-header {
    flex-direction: column;
  }

  .home-hot-topic-band-icon {
    align-self: flex-end;
  }
}

@media (max-width: 640px) {
  .web-nav,
  .home-nav {
    align-items: flex-start;
  }

  .web-nav-links,
  .home-nav-links {
    justify-content: flex-start;
  }

  .web-nav-links a,
  .home-nav-links a,
  .button-link {
    padding: 0.58rem 0.72rem;
  }

  .home-shell .web-nav,
.web-shell .viberank-shell-nav {
    padding: 0.8rem 1rem;
  }

  .home-shell .web-nav-links,
  .web-shell .viberank-shell-nav .web-nav-links {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    gap: 0.35rem;
    -ms-overflow-style: none;
  }

  .home-shell .web-nav-links::-webkit-scrollbar,
  .web-shell .viberank-shell-nav .web-nav-links::-webkit-scrollbar {
    height: 0;
    display: none;
  }

  .home-shell .web-nav-links a,
  .web-shell .viberank-shell-nav .web-nav-links a,
  .home-shell .web-nav-links .home-aura-preview,
  .web-shell .viberank-shell-nav .web-nav-links .home-aura-preview {
    min-height: 2.1rem;
  }

.home-sign-in-link span {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: nowrap;
  }

  .home-nav-search {
    width: 100%;
  }

  .home-nav-search input {
    min-height: 2.1rem;
    padding: 0.45rem 0.75rem 0.45rem 2rem;
    font-size: 0.95rem;
  }

  .home-stat-panel,
  .home-stat-grid {
    display: none;
  }

  .home-main-column {
    gap: 0.75rem;
  }

  .home-main-column .home-hot-topic-band {
    order: 0;
  }

  .home-main-column .home-feed-controls {
    order: 1;
  }

  .home-main-column .home-trending-panel,
  .home-main-column .opportunity-feed {
    order: 2;
  }

  .home-feed-controls {
    padding: 0.7rem;
    gap: 0.65rem;
  }

  .home-feed-controls .web-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
    padding-bottom: 0.15rem;
  }

  .home-feed-controls .web-tabs a {
    min-height: 2.25rem;
    justify-content: center;
    padding: 0.35rem 0.45rem;
    font-size: 0.85rem;
    white-space: normal;
    text-align: center;
  }

  .home-hot-topic-band {
    padding: 0.9rem;
  }

  .home-featured-event {
    min-height: 0;
  }

  .home-featured-event-content {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 1rem;
  }

  .home-featured-event h2 {
    font-size: clamp(2.75rem, 17vw, 4rem);
  }

  .home-featured-event p {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .home-featured-event-side {
    gap: 0.65rem;
  }

  .home-featured-event-match {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 0.65rem;
  }

  .home-featured-event-match em {
    justify-content: flex-start;
  }

  .home-hot-topic-visual {
    height: 11rem;
    min-height: 11rem;
    max-height: 11rem;
  }

  .home-hot-topic-body {
    padding: 1rem;
  }

  .home-hot-topic-meta div {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0.15rem;
  }

  .home-hot-topic-meta dd {
    text-align: left;
  }

  .home-market-body {
    padding: 1rem;
  }

  .home-market-card .opportunity-card-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .home-market-card .category-pill {
    justify-self: start;
  }

  .home-card-footer {
    gap: 0.65rem;
  }

  .home-market-meta {
    justify-content: flex-start;
  }

  .home-card-actions {
    justify-content: flex-start;
  }

  .home-card-actions .share-actions {
    order: 0;
  }

  .home-card-actions .card-action:last-child {
    margin-left: 0;
  }

  .home-trending-header,
  .home-trending-item {
    grid-template-columns: 1fr;
  }

  .home-trending-item strong {
    min-width: 0;
    text-align: left;
  }
}

@media (prefers-color-scheme: dark) {
  body {
    background: #101418;
    color: #f8fafc;
  }

  p,
  .meta,
  .source-list span {
    color: #bac5d3;
  }

  article,
  .empty,
  .leaderboard-list li,
  .badge-list li,
  .stat-grid div,
  .filters a,
  .pagination a,
  .pagination span {
    background: #171d24;
    border-color: #334155;
    color: #f8fafc;
  }

  .filters a[aria-current="page"] {
    border-color: hsl(190 92% 58%);
    background: rgba(21, 215, 244, 0.12);
    color: #bff7ff;
  }

  .brand-lockup {
    color: #f8fafc;
  }

  .options li {
    background: #263241;
    color: #e5edf7;
  }

  .data-table th,
  .data-table td {
    border-color: #334155;
  }

  .handoff-link {
    background: #f8fafc;
    color: #111827;
  }
}
