:root {
  --rr-bg: #050507;
  --rr-surface: #0f1115;
  --rr-surface-2: #161922;
  --rr-text: #f4f6fb;
  --rr-muted: #b6bdd1;
  --rr-border: #2a2f3b;
  --rr-accent: #9b4dff;
  --rr-accent-soft: #bc8eff;
  --rr-max: 1200px;
}

.screen-reader-text {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

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

body {
  margin: 0;
  background: radial-gradient(circle at 20% -10%, #211233 0%, var(--rr-bg) 36%);
  color: var(--rr-text);
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.45;
}

a {
  color: var(--rr-text);
  text-decoration: none;
}

a:hover {
  color: var(--rr-accent-soft);
}

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

.rr-wrap {
  width: min(80vw, var(--rr-max));
  margin-inline: auto;
}

.rr-main {
  padding: 0.9rem 0 3rem;
}

.rr-site-kicker {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.rr-site-kicker p {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
}

.rr-header {
  background: #ffffff;
  border-bottom: 1px solid #d9dde8;
}

.rr-header__top {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: #ffffff;
  border-bottom: 1px solid #e4e8f0;
}

.rr-header__sub {
  background: #f5f7fb;
}

.rr-header__sub .rr-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.rr-subnav__label {
  color: #111623;
  font-weight: 800;
  font-size: calc(0.88rem + 2px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.rr-header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
  padding: 0.68rem 0;
  min-height: 106px;
}

.rr-mobile-menu-toggle,
.rr-mobile-panel {
  display: none;
}

.rr-mobile-menu-toggle {
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid #d5dbea;
  border-radius: 10px;
  background: #fff;
  padding: 8px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
}

.rr-mobile-menu-toggle__line {
  width: 20px;
  height: 2px;
  background: #111623;
  border-radius: 2px;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.rr-mobile-panel {
  border-top: 1px solid #e5e9f3;
  background: #ffffff;
}

.rr-mobile-panel[hidden] {
  display: none !important;
}

.rr-mobile-panel:not([hidden]) {
  display: block;
}

.rr-mobile-panel__inner {
  padding: 0.6rem 0 0.8rem;
}

.rr-mobile-nav__list,
.rr-mobile-cats__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.rr-mobile-nav__list a,
.rr-mobile-cats__menu a {
  color: #111623;
  font-size: 1rem;
  font-weight: 700;
}

.rr-mobile-cats__menu a,
.rr-mobile-cats__menu a:visited {
  color: #9b4dff;
}

.rr-mobile-cats {
  margin-top: 0;
  margin-bottom: 0.45rem;
  padding-top: 0;
  border-top: 0;
}

.rr-mobile-cats--bottom {
  margin-top: 0.55rem;
  margin-bottom: 0;
  padding-top: 0.55rem;
  border-top: 1px solid #e8ecf6;
}

.rr-mobile-cats__toggle {
  width: 100%;
  text-align: left;
  border: 1px solid #9b4dff;
  background: #9b4dff;
  color: #ffffff;
  border-radius: 10px;
  padding: 0.5rem 0.65rem 0.52rem;
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.08rem 0.5rem;
  align-items: center;
}

.rr-mobile-cats__toggle > span {
  grid-column: 1;
  grid-row: 1;
}

.rr-mobile-cats__toggle > small {
  grid-column: 1;
  grid-row: 2;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.rr-mobile-cats__toggle::after {
  content: "▾";
  grid-column: 2;
  grid-row: 1 / span 2;
  font-size: 0.95rem;
  line-height: 1;
}

.rr-mobile-cats__toggle[aria-expanded="true"]::after {
  content: "▴";
}

.rr-mobile-cats__list {
  margin-top: 0.55rem;
}

.rr-header.is-mobile-open .rr-mobile-menu-toggle__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.rr-header.is-mobile-open .rr-mobile-menu-toggle__line:nth-child(2) {
  opacity: 0;
}

.rr-header.is-mobile-open .rr-mobile-menu-toggle__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.rr-brand {
  flex: 0 0 auto;
}

.rr-brand img {
  max-height: 100px;
  width: auto;
  height: auto;
}

.rr-brand .custom-logo {
  height: 100px;
  width: auto;
  max-width: none;
}

.rr-brand__text {
  color: var(--rr-accent);
  font-weight: 800;
  font-size: 1.8rem;
}

.rr-nav {
  margin-left: 0;
  overflow: visible;
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.rr-header__auth {
  margin-left: auto;
}

.rr-header__auth {
  margin-left: 0.5rem;
  white-space: nowrap;
}

.rr-auth-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 1rem;
  font-weight: 600;
  color: #111623;
  text-decoration: none;
}

.rr-auth-link:hover {
  color: var(--rr-accent);
}

.rr-auth-link--user {
  color: #4c1d95;
}

.rr-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.05rem;
  min-width: 0;
  justify-content: center;
}

.rr-nav__list a {
  font-weight: 650;
  color: #111623;
  opacity: 1;
  font-size: 1.4rem;
}

.rr-nav__list a:visited {
  color: #111623;
}

.rr-nav__list li:not(.current-menu-item):not(.current_page_item):not(.is-current) > a,
.rr-nav__list li:not(.current-menu-item):not(.current_page_item):not(.is-current) > a:visited {
  color: #111623;
}

.rr-nav__list a:hover {
  color: var(--rr-accent);
}

.rr-nav__list li.current-menu-item > a,
.rr-nav__list li.current_page_item > a,
.rr-nav__list li.is-current > a,
.rr-subnav__list li.current-menu-item > a,
.rr-subnav__list li.current_page_item > a,
.rr-subnav__list li.is-current > a {
  color: var(--rr-accent);
}

.rr-nav__list li.current-menu-item > a:visited,
.rr-nav__list li.current_page_item > a:visited,
.rr-nav__list li.is-current > a:visited,
.rr-subnav__list li.current-menu-item > a:visited,
.rr-subnav__list li.current_page_item > a:visited,
.rr-subnav__list li.is-current > a:visited {
  color: var(--rr-accent);
}

.rr-nav__list a[href*="/subscribe"] {
  background: #dc2626;
  color: #fff !important;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
}

.rr-nav__list .rr-subscribe-menu-item {
  margin-left: 0;
}

.rr-nav__list a[href*="/subscribe"]:hover {
  background: #b91c1c;
  color: #fff !important;
}

.rr-nav__list .rr-jobs-menu-item > a {
  border: 1px solid var(--rr-accent);
  color: var(--rr-accent);
  padding: 0.28rem 0.52rem;
  border-radius: 999px;
}

@media (min-width: 901px) {
  .rr-nav__list {
    flex-wrap: nowrap;
    white-space: nowrap;
  }
}

.rr-nav__list .rr-jobs-menu-item > a:hover {
  background: rgba(155, 77, 255, 0.1);
  color: var(--rr-accent);
}

.rr-nav__list li.is-current a[href*="/subscribe"],
.rr-nav__list li.current-menu-item a[href*="/subscribe"] {
  background: #b91c1c;
  color: #fff !important;
}

.rr-nav__list a[href*="/subscribe"]:visited,
.rr-nav__list a[href*="/subscribe"]:active,
.rr-nav__list a[href*="/subscribe"]:focus {
  color: #fff !important;
}

.rr-nav__list li.current-menu-parent > a,
.rr-nav__list li.current_page_parent > a,
.rr-nav__list li.current-menu-ancestor > a,
.rr-nav__list li.current_page_ancestor > a,
.rr-nav__list li.current-menu-parent > a:visited,
.rr-nav__list li.current_page_parent > a:visited,
.rr-nav__list li.current-menu-ancestor > a:visited,
.rr-nav__list li.current_page_ancestor > a:visited {
  color: #111623 !important;
}

.rr-subnav__list li.current-menu-parent > a,
.rr-subnav__list li.current_page_parent > a,
.rr-subnav__list li.current-menu-ancestor > a,
.rr-subnav__list li.current_page_ancestor > a,
.rr-subnav__list li.current-menu-parent > a:visited,
.rr-subnav__list li.current_page_parent > a:visited,
.rr-subnav__list li.current-menu-ancestor > a:visited,
.rr-subnav__list li.current_page_ancestor > a:visited {
  color: #3b4359 !important;
}

.rr-subnav {
  overflow: visible;
  padding: 0.33rem 0;
  flex: 0 1 auto;
}

.rr-subnav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.4rem 0.72rem;
  min-width: 0;
  justify-content: center;
}

.rr-subnav__list a {
  color: #3b4359;
  font-size: calc(0.88rem + 2px);
  font-weight: 640;
  white-space: nowrap;
}

.rr-subnav__list a:visited {
  color: #3b4359;
}

.rr-subnav__list li:not(.current-menu-item):not(.current_page_item):not(.is-current) > a,
.rr-subnav__list li:not(.current-menu-item):not(.current_page_item):not(.is-current) > a:visited {
  color: #3b4359;
}

.rr-subnav__list a:hover {
  color: var(--rr-accent) !important;
}

.rr-subnav__list a:hover:visited {
  color: var(--rr-accent) !important;
}

.rr-fold {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1rem;
  margin-top: 0.85rem;
}

.rr-fold__right {
  display: grid;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.rr-fold__mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.rr-card {
  background: linear-gradient(160deg, #131723 0%, #0b0e16 100%);
  border: 1px solid var(--rr-border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.rr-card:hover {
  transform: translateY(-2px);
  border-color: #4c5672;
  box-shadow: 0 8px 24px rgba(6, 10, 19, 0.45);
}

.rr-card__image {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.rr-card--large .rr-card__image {
  aspect-ratio: auto;
  height: clamp(220px, 24vw, 340px);
}

.rr-card--medium .rr-card__image {
  aspect-ratio: auto;
  height: clamp(160px, 16vw, 240px);
}

.rr-card__image--placeholder {
  background: linear-gradient(130deg, #2a2338, #191d2a);
}

.rr-card__body {
  padding: 0.8rem 0.9rem 1rem;
}

.rr-card__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.02rem, 2vw, 1.45rem);
  line-height: 1.2;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.01em;
}

.rr-card--large .rr-card__title {
  font-size: 26px;
  line-height: 1.2;
}

.rr-card--medium .rr-card__title {
  font-size: 18px;
  line-height: 1.2;
}

.rr-card--small .rr-card__title {
  font-size: 1rem;
}

.rr-card__excerpt {
  margin: 0 0 0.65rem;
  color: var(--rr-muted);
  font-size: 0.98rem;
}

.rr-card__meta {
  margin: 0;
  color: var(--rr-accent-soft);
  font-size: 0.82rem;
  font-weight: 600;
}

.rr-card--placeholder {
  border-style: dashed;
  border-color: #3a3f50;
}

.rr-card--placeholder .rr-card__title {
  color: #d3d8e8;
}

.rr-latest,
.rr-category,
.rr-discovery,
.rr-news-feed,
.rr-listing,
.rr-single {
  margin-top: 1.05rem;
  background: rgba(15, 17, 21, 0.88);
  border: 1px solid var(--rr-border);
  border-radius: 14px;
  padding: 1rem;
}

.rr-section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.rr-section-head h1,
.rr-section-head h2 {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.01em;
}

.rr-section-head a {
  color: var(--rr-accent-soft);
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.rr-listing__description {
  margin: -0.2rem 0 0.75rem;
  color: var(--rr-muted);
  font-size: 0.95rem;
}

.rr-list-feed {
  display: grid;
  gap: 0.62rem;
}

.rr-listing .navigation.pagination {
  margin-top: 0.8rem;
}

.rr-listing .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.rr-listing .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  padding: 0.34rem 0.55rem;
  border: 1px solid #3a4258;
  border-radius: 999px;
  background: #141a28;
  color: #e7ecfb;
  font-size: 0.82rem;
  font-weight: 700;
}

.rr-listing .page-numbers.current {
  background: var(--rr-accent);
  border-color: var(--rr-accent);
  color: #fff;
}

.rr-listing .page-numbers:hover {
  border-color: var(--rr-accent-soft);
  color: var(--rr-accent-soft);
}

.rr-latest-pagination {
  margin-top: 0.9rem;
}

.rr-latest-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rr-latest-pagination .page-numbers a,
.rr-latest-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  padding: 0.34rem 0.55rem;
  border: 1px solid #3a4258;
  border-radius: 999px;
  background: #141a28;
  color: #e7ecfb;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.rr-latest-pagination .page-numbers .current {
  background: var(--rr-accent);
  border-color: var(--rr-accent);
  color: #fff;
}

.rr-latest-pagination .page-numbers a:hover {
  border-color: var(--rr-accent-soft);
  color: var(--rr-accent-soft);
}

#rr-latest-results.is-loading {
  opacity: 0.6;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.rr-latest__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.rr-discovery {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.rr-products-strip {
  margin-top: 0.85rem;
  background: rgba(15, 17, 21, 0.88);
  border: 1px solid var(--rr-border);
  border-radius: 14px;
  padding: 0.85rem;
}

.rr-products-strip__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 1.6rem) / 3);
  gap: 0.8rem;
  overflow-x: hidden;
  scroll-snap-type: x proximity;
  scroll-padding-left: 0.2rem;
  padding-bottom: 0.25rem;
}

.rr-products-strip__track::-webkit-scrollbar {
  height: 10px;
}

.rr-products-strip__track::-webkit-scrollbar-thumb {
  background: #30384b;
  border-radius: 999px;
}

.rr-products-card {
  scroll-snap-align: start;
}

.rr-products-card__link {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 0.7rem;
  align-items: center;
  min-height: 96px;
  border: 1px solid #2d3343;
  border-radius: 10px;
  padding: 0.48rem;
  background: #0c101a;
}

.rr-products-card__link:hover {
  border-color: #475271;
}

.rr-products-card__image {
  width: 100%;
  height: 84px;
  object-fit: cover;
  border-radius: 8px;
}

.rr-products-card__image--placeholder {
  background: linear-gradient(130deg, #2a2338, #191d2a);
}

.rr-products-card__body h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.2;
}

.rr-products-card__body p {
  margin: 0.28rem 0 0;
  color: #b8c0d6;
  font-size: 0.8rem;
  line-height: 1.25;
}

.rr-products-card--placeholder h3 {
  color: #d3d8e8;
}

.rr-discovery .rr-section-head {
  margin-bottom: 0.55rem;
}

.rr-discovery__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.rr-discovery__col {
  background: #0c1018;
  border: 1px solid #2b3140;
  border-radius: 10px;
  padding: 0.6rem;
}

.rr-discovery__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}

.rr-discovery__head h3 {
  margin: 0;
  font-size: 1rem;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

.rr-discovery__head a {
  color: var(--rr-accent-soft);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rr-discovery-item {
  border-top: 1px solid #242a38;
  padding: 0.45rem 0 0.45rem;
}

.rr-discovery-item:first-of-type {
  border-top: 0;
  padding-top: 0.15rem;
}

.rr-discovery-item h4 {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.2;
}

.rr-discovery-item p {
  margin: 0.24rem 0 0;
  color: #c4cae0;
  font-size: 0.74rem;
}

.rr-news-feed {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 1rem;
}

.rr-feed-item {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0.75rem;
  padding: 0.62rem;
  border: 1px solid var(--rr-border);
  border-radius: 12px;
  background: #0b0f19;
  margin-bottom: 0.62rem;
}

.rr-feed-item__image {
  width: 100%;
  height: 136px;
  object-fit: cover;
  border-radius: 8px;
}

.rr-feed-item__content {
  display: flex;
  flex-direction: column;
}

.rr-feed-item__title {
  margin: 0 0 0.25rem;
  font-size: clamp(1.1rem, 1.7vw, 1.5rem);
  line-height: 1.08;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

.rr-feed-item__title a {
  font-weight: 820;
}

.rr-feed-item__excerpt {
  margin: 0.15rem 0 0.45rem;
  color: #e9ecf8;
  font-size: 0.98rem;
  line-height: 1.25;
}

.rr-feed-item__meta {
  margin: auto 0 0;
  color: var(--rr-accent-soft);
  font-size: 0.8rem;
  font-weight: 650;
}

.rr-feed-item--placeholder .rr-feed-item__title {
  color: #d3d8e8;
}

.rr-hidden {
  display: none;
}

.rr-subscribe {
  margin-top: 1rem;
  border: 1px solid var(--rr-accent);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(16, 20, 36, 0.12);
}

.rr-subscribe-sentinel {
  height: 1px;
}

.rr-subscribe__inner {
  padding: 0.9rem 1rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.9rem;
  align-items: center;
}

.rr-subscribe h2 {
  margin: 0;
  font-size: clamp(1.15rem, 1.8vw, 1.6rem);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

.rr-subscribe p {
  margin: 0.25rem 0 0;
  color: #384152;
  font-size: 0.93rem;
}

.rr-subscribe h2,
.rr-subscribe a,
.rr-subscribe label {
  color: #131826;
}

.rr-subscribe__form-wrap input[type="email"],
.rr-subscribe__form-wrap input[type="text"],
.rr-subscribe--rail input[type="email"],
.rr-subscribe--rail input[type="text"] {
  width: 100%;
  background: #f7f8fc;
  border: 1px solid #c8d0e4;
  color: #111623;
  border-radius: 8px;
  padding: 0.6rem 0.7rem;
}

.rr-subscribe__form-wrap input[type="submit"],
.rr-subscribe__form-wrap button,
.rr-subscribe--rail input[type="submit"],
.rr-subscribe--rail button {
  margin-top: 0.45rem;
  width: 100%;
  background: linear-gradient(135deg, var(--rr-accent), #6f2fff);
  border: 0;
  color: #fff;
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  font-weight: 700;
}

.rr-subscribe--inline .rr-subscribe__inner {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.rr-subscribe--hero {
  --rr-sticky-top: 86px;
  position: sticky;
  top: var(--rr-sticky-top);
  z-index: 1100;
}

.admin-bar .rr-subscribe--hero {
  --rr-sticky-top: 118px;
}

.rr-subscribe--hero.is-popup {
  box-shadow: 0 8px 24px rgba(16, 20, 36, 0.18);
}

.rr-news-feed__right {
  border-left: 1px solid var(--rr-border);
  padding-left: 0.8rem;
}

.rr-reg-item {
  background: #0c101a;
  border: 1px solid #2d3343;
  border-radius: 10px;
  padding: 0.7rem;
  margin-bottom: 0.6rem;
}

.rr-reg-item h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.16;
}

.rr-reg-item p {
  margin: 0.4rem 0 0;
  font-size: 0.82rem;
  color: var(--rr-accent-soft);
}

.rr-load-more-wrap {
  margin-top: 0.8rem;
  text-align: center;
}

.rr-news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
}

.rr-filter-btn {
  background: #141a28;
  border: 1px solid #3a4258;
  color: #e7ecfb;
  border-radius: 999px;
  padding: 0.34rem 0.72rem;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.rr-filter-btn:hover {
  border-color: var(--rr-accent-soft);
  color: var(--rr-accent-soft);
}

.rr-filter-btn.is-active {
  background: var(--rr-accent);
  border-color: var(--rr-accent);
  color: #fff;
}

.rr-news-empty {
  margin-top: 0.6rem;
  border: 1px dashed #3b4254;
  border-radius: 10px;
  padding: 0.6rem;
  color: #cbd1e4;
  font-size: 0.92rem;
}

.rr-load-more-btn {
  background: #141a28;
  color: #f3f6ff;
  border: 1px solid #404a60;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-weight: 700;
  cursor: pointer;
}

.rr-load-more-btn:hover {
  border-color: var(--rr-accent-soft);
  color: var(--rr-accent-soft);
}

.rr-single {
  max-width: 840px;
}

.rr-subscribe-page {
  margin-top: 1.05rem;
}

.rr-marketplace,
.rr-market-company {
  margin-top: 1.05rem;
  background: rgba(15, 17, 21, 0.88);
  border: 1px solid var(--rr-border);
  border-radius: 14px;
  padding: 1rem;
}

.rr-job-board {
  margin-top: 1.05rem;
  background: rgba(15, 17, 21, 0.88);
  border: 1px solid var(--rr-border);
  border-radius: 14px;
  padding: 1rem;
}

.rr-job-board__hero {
  max-width: 100%;
  text-align: center;
}

.rr-job-board__hero h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  white-space: nowrap;
  line-height: 1.1;
}

.rr-job-board__hero p {
  margin: 0.45rem 0 0;
  color: #d8def1;
}

.rr-job-board__note {
  color: #ffc3d0;
  font-size: 0.9rem;
}

.rr-job-board__layout {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 0.9rem;
}

.rr-job-board__filters {
  border: 1px solid #2f3548;
  border-radius: 12px;
  background: #0d111b;
  padding: 0.75rem;
  height: fit-content;
}

.rr-job-filter-group {
  margin-top: 0.7rem;
  padding-top: 0.7rem;
  border-top: 1px solid #2d3344;
}

.rr-job-filter-group:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.rr-job-filter-group h2 {
  margin: 0 0 0.45rem;
  font-size: 0.98rem;
}

.rr-job-filter-group label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #d8def1;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
}

.rr-job-filter-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

.rr-job-board__results {
  position: relative;
  border: 1px solid #2f3548;
  border-radius: 12px;
  background: #0d111b;
  padding: 0.75rem;
}

.rr-job-board__search-wrap input {
  width: 100%;
  background: #0b0f17;
  border: 1px solid #3a4258;
  border-radius: 8px;
  color: #fff;
  padding: 0.58rem 0.72rem;
}

.rr-job-board__count {
  margin: 0.62rem 0 0.4rem;
  color: #cbd2e7;
  font-size: 0.88rem;
}

.rr-job-board__list {
  display: grid;
  gap: 0.58rem;
}

.rr-job-board__list.is-locked {
  filter: blur(4px);
  pointer-events: none;
  user-select: none;
}

.rr-job-board__lock-overlay {
  position: absolute;
  inset: 112px 16px 16px;
  z-index: 5;
  border: 1px solid #3b4260;
  border-radius: 12px;
  background: rgba(9, 13, 21, 0.86);
  backdrop-filter: blur(2px);
  display: grid;
  align-content: start;
  justify-items: center;
  text-align: center;
  gap: 0.62rem;
  padding: 1.25rem 1.1rem 1.1rem;
}

.rr-job-board__lock-overlay h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
}

.rr-job-board__lock-overlay p {
  margin: 0;
  max-width: 62ch;
  color: #dbe3f7;
}

.rr-job-board__lock-overlay button {
  background: linear-gradient(135deg, var(--rr-accent), #6f2fff);
  border: 0;
  color: #fff;
  border-radius: 8px;
  padding: 0.58rem 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.rr-job-card {
  border: 1px solid #2f3548;
  border-radius: 10px;
  background: #0f1521;
  padding: 0.75rem;
}

.rr-job-card__row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 0.75rem;
}

.rr-job-card__logo {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(140deg, #ef4f83 0%, #6a4cff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}

.rr-job-card__head {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  align-items: flex-start;
}

.rr-job-card__head h3 {
  margin: 0;
  font-size: 1.12rem;
}

.rr-job-card__head p {
  margin: 0.22rem 0 0;
  color: #c5cde1;
  font-size: 0.9rem;
}

.rr-job-card__posted {
  color: #dbe3f7;
  font-size: 0.82rem;
  border: 1px solid #3c4561;
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
  white-space: nowrap;
}

.rr-job-card__desc {
  margin: 0.52rem 0 0.62rem;
  color: #e9edfa;
  font-size: 0.93rem;
}

.rr-job-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.rr-job-card__tags span {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.48rem;
  border-radius: 999px;
  background: #1a2131;
  border: 1px solid #3a4258;
  color: #dbe3f7;
  font-size: 0.72rem;
  font-weight: 700;
}

.rr-job-card__actions {
  margin-top: 0.62rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.rr-job-card__actions button {
  background: linear-gradient(135deg, var(--rr-accent), #6f2fff);
  border: 0;
  color: #fff;
  border-radius: 8px;
  padding: 0.5rem 0.72rem;
  font-weight: 700;
  cursor: pointer;
}

.rr-job-card__actions .rr-job-card__cta {
  background: linear-gradient(135deg, var(--rr-accent), #6f2fff);
  border: 0;
  color: #fff;
  border-radius: 8px;
  padding: 0.5rem 0.72rem;
  font-weight: 700;
  text-decoration: none;
}

.rr-job-card__actions .rr-job-card__save {
  background: #1a2131;
  border: 1px solid #3a4258;
}

.rr-marketplace__hero {
  max-width: 100%;
  text-align: center;
}

.rr-marketplace__hero h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  white-space: nowrap;
  line-height: 1.1;
}

.rr-marketplace__hero p {
  margin: 0.45rem 0 0;
  color: #d8def1;
}

.rr-marketplace__disclaimer {
  color: #ffc3d0;
  font-size: 0.9rem;
}

.rr-marketplace__success {
  margin-top: 0.55rem;
  display: inline-block;
  padding: 0.38rem 0.6rem;
  border: 1px solid #14532d;
  border-radius: 8px;
  background: rgba(22, 101, 52, 0.25);
  color: #bbf7d0;
  font-size: 0.86rem;
}

.rr-marketplace__toolbar {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.rr-marketplace__sort {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.rr-marketplace__sort label {
  color: #d8def1;
  font-size: 0.9rem;
}

.rr-marketplace__sort select {
  background: #0f1420;
  border: 1px solid #3a4258;
  border-radius: 8px;
  color: #fff;
  padding: 0.4rem 0.6rem;
}

.rr-marketplace__layout {
  margin-top: 0.62rem;
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 0.9rem;
}

.rr-marketplace__filters {
  border: 1px solid #2f3548;
  border-radius: 12px;
  background: #0d111b;
  padding: 0.75rem;
  height: fit-content;
}

.rr-market-filter-group {
  margin-top: 0.7rem;
  padding-top: 0.7rem;
  border-top: 1px solid #2d3344;
}

.rr-market-filter-group:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.rr-market-filter-group h2 {
  margin: 0 0 0.45rem;
  font-size: 0.98rem;
}

.rr-market-filter-group label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #d8def1;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
}

.rr-market-filter-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

.rr-marketplace__results {
  position: relative;
  border: 1px solid #2f3548;
  border-radius: 12px;
  background: #0d111b;
  padding: 0.75rem;
}

.rr-marketplace__search-wrap input {
  width: 100%;
  background: #0b0f17;
  border: 1px solid #3a4258;
  border-radius: 8px;
  color: #fff;
  padding: 0.58rem 0.72rem;
}

.rr-marketplace__count {
  margin: 0.62rem 0 0.4rem;
  color: #cbd2e7;
  font-size: 0.88rem;
}

.rr-marketplace__list {
  border: 1px solid #2f3548;
  border-radius: 10px;
  overflow: hidden;
}

.rr-marketplace__list.is-locked {
  filter: blur(4px);
  pointer-events: none;
  user-select: none;
}

.rr-marketplace__lock-overlay {
  position: absolute;
  inset: 112px 16px 16px;
  z-index: 5;
  border: 1px solid #3b4260;
  border-radius: 12px;
  background: rgba(9, 13, 21, 0.86);
  backdrop-filter: blur(2px);
  display: grid;
  align-content: start;
  justify-items: center;
  text-align: center;
  gap: 0.62rem;
  padding: 1.25rem 1.1rem 1.1rem;
}

.rr-marketplace__lock-overlay h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
}

.rr-marketplace__lock-overlay p {
  margin: 0;
  max-width: 62ch;
  color: #dbe3f7;
}

.rr-marketplace__lock-overlay button {
  background: linear-gradient(135deg, var(--rr-accent), #6f2fff);
  border: 0;
  color: #fff;
  border-radius: 8px;
  padding: 0.58rem 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.rr-market-card {
  border-top: 1px solid #2f3548;
}

.rr-market-card:first-child {
  border-top: 0;
}

.rr-market-card__link {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 0.75rem;
  padding: 0.7rem;
}

.rr-market-card__link:hover {
  background: #101828;
}

.rr-market-card__logo {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(140deg, #ef4f83 0%, #6a4cff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}

.rr-market-card__headline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
}

.rr-market-card__headline h3 {
  margin: 0;
  font-size: 1.2rem;
}

.rr-market-card__headline p {
  margin: 0;
  color: #c4ccdf;
  font-size: 0.9rem;
}

.rr-market-card__tagline {
  margin: 0.2rem 0 0.45rem;
  color: #e9edfa;
  font-size: 0.95rem;
}

.rr-market-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.rr-market-card__tags span,
.rr-market-company__tags span {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.48rem;
  border-radius: 999px;
  background: #1a2131;
  border: 1px solid #3a4258;
  color: #dbe3f7;
  font-size: 0.72rem;
  font-weight: 700;
}

.rr-market-company__crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  color: #c3cce2;
  font-size: 0.85rem;
}

.rr-market-company__crumbs a {
  color: #d2dbef;
}

.rr-market-company__top {
  margin-top: 0.65rem;
}

.rr-market-company__intro {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
}

.rr-market-company__logo {
  width: 82px;
  height: 82px;
  border-radius: 18px;
  background: linear-gradient(140deg, #ef4f83 0%, #6a4cff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  font-weight: 800;
  color: #fff;
}

.rr-market-company__intro h1 {
  margin: 0;
}

.rr-market-company__tagline {
  margin: 0.24rem 0 0.46rem;
  color: #d8def1;
}

.rr-market-company__layout {
  margin-top: 0.78rem;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 0.9fr);
  gap: 0.95rem;
}

.rr-market-company__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  border-top: 1px solid #2f3548;
  border-bottom: 1px solid #2f3548;
  padding: 0.62rem 0;
  margin-bottom: 0.72rem;
}

.rr-market-company__tabs span,
.rr-market-company__tabs a {
  color: #dbe3f7;
  font-size: 0.95rem;
}

.rr-market-company__tabs .is-active {
  font-weight: 800;
}

.rr-market-company__section {
  border: 1px solid #2f3548;
  background: #0d111b;
  border-radius: 12px;
  padding: 0.82rem;
  margin-bottom: 0.72rem;
}

.rr-market-company__section h2 {
  margin: 0 0 0.52rem;
  font-size: 1.2rem;
}

.rr-market-company__section p {
  margin: 0.45rem 0 0;
  color: #dbe3f7;
  line-height: 1.6;
}

.rr-market-company__lead-form {
  margin-top: 0.65rem;
  display: grid;
  gap: 0.58rem;
}

.rr-market-company__lead-form label span {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.8rem;
  color: #d2dbef;
  font-weight: 700;
}

.rr-market-company__lead-form input,
.rr-market-company__lead-form textarea {
  width: 100%;
  background: #0b0f17;
  border: 1px solid #3a4258;
  border-radius: 8px;
  color: #fff;
  padding: 0.56rem 0.66rem;
}

.rr-market-company__lead-form button,
.rr-market-company__actions button,
.rr-market-company__actions a {
  background: linear-gradient(135deg, var(--rr-accent), #6f2fff);
  border: 0;
  color: #fff;
  border-radius: 8px;
  padding: 0.58rem 0.8rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.rr-market-company__facts {
  border: 1px solid #2f3548;
  background: #0d111b;
  border-radius: 12px;
  padding: 0.8rem;
}

.rr-market-company__facts h2 {
  margin: 0 0 0.6rem;
}

.rr-market-company__facts ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.42rem;
}

.rr-market-company__facts li {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.88rem;
}

.rr-market-company__facts li span {
  color: #c4ccdf;
}

.rr-market-company__actions {
  margin-top: 0.72rem;
  display: grid;
  gap: 0.5rem;
}

.rr-market-company {
  position: relative;
}

.rr-market-company__panel.is-locked {
  filter: blur(4px);
  pointer-events: none;
  user-select: none;
}

.rr-market-company__lock-overlay {
  position: absolute;
  inset: 16px;
  z-index: 6;
  border: 1px solid #3b4260;
  border-radius: 12px;
  background: rgba(9, 13, 21, 0.86);
  backdrop-filter: blur(2px);
  display: grid;
  align-content: start;
  justify-items: center;
  text-align: center;
  gap: 0.62rem;
  padding: 1.25rem 1.1rem 1.1rem;
}

.rr-market-company__lock-overlay h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
}

.rr-market-company__lock-overlay p {
  margin: 0;
  max-width: 62ch;
  color: #dbe3f7;
}

.rr-market-company__lock-overlay a {
  background: linear-gradient(135deg, var(--rr-accent), #6f2fff);
  border: 0;
  color: #fff;
  border-radius: 8px;
  padding: 0.58rem 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.rr-job-detail {
  margin-top: 1.05rem;
  background: rgba(15, 17, 21, 0.88);
  border: 1px solid var(--rr-border);
  border-radius: 14px;
  padding: 1rem;
  position: relative;
}

.rr-job-detail__panel.is-locked {
  filter: blur(4px);
  pointer-events: none;
  user-select: none;
}

.rr-job-detail__crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  color: #c3cce2;
  font-size: 0.85rem;
}

.rr-job-detail__crumbs a {
  color: #d2dbef;
}

.rr-job-detail__main h1 {
  margin: 0.7rem 0 0.35rem;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.rr-job-detail__company {
  margin: 0;
  color: #dbe3f7;
  font-size: 1rem;
}

.rr-job-detail__tags {
  margin-top: 0.52rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.rr-job-detail__tags span {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.48rem;
  border-radius: 999px;
  background: #1a2131;
  border: 1px solid #3a4258;
  color: #dbe3f7;
  font-size: 0.72rem;
  font-weight: 700;
}

.rr-job-detail__section {
  margin-top: 0.72rem;
  border: 1px solid #2f3548;
  background: #0d111b;
  border-radius: 12px;
  padding: 0.8rem;
}

.rr-job-detail__section h2 {
  margin: 0 0 0.42rem;
  font-size: 1.2rem;
}

.rr-job-detail__section p {
  margin: 0.45rem 0 0;
  color: #dbe3f7;
  line-height: 1.55;
}

.rr-job-detail__lock-overlay {
  position: absolute;
  inset: 16px;
  z-index: 6;
  border: 1px solid #3b4260;
  border-radius: 12px;
  background: rgba(9, 13, 21, 0.86);
  backdrop-filter: blur(2px);
  display: grid;
  align-content: start;
  justify-items: center;
  text-align: center;
  gap: 0.62rem;
  padding: 1.25rem 1.1rem 1.1rem;
}

.rr-job-detail__lock-overlay h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
}

.rr-job-detail__lock-overlay p {
  margin: 0;
  max-width: 62ch;
  color: #dbe3f7;
}

.rr-job-detail__lock-overlay a {
  background: linear-gradient(135deg, var(--rr-accent), #6f2fff);
  border: 0;
  color: #fff;
  border-radius: 8px;
  padding: 0.58rem 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.rr-similar-feed {
  margin-top: 1rem;
  border: 1px solid #2f3548;
  border-radius: 12px;
  background: #0d111b;
  padding: 0.8rem;
}

.rr-similar-feed__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.62rem;
}

.rr-similar-feed-item {
  border: 1px solid #2f3750;
  border-radius: 10px;
  background: #0a0f1b;
}

.rr-similar-feed-item__body {
  padding: 0.62rem 0.66rem;
}

.rr-similar-feed-item__title {
  margin: 0 0 0.4rem;
  font-size: 0.92rem;
  line-height: 1.3;
}

.rr-similar-feed-item__title a {
  color: #f0f3fe;
}

.rr-similar-feed-item__title span {
  color: #f0f3fe;
}

.rr-similar-feed-item__excerpt {
  margin: 0 0 0.48rem;
  color: #cfd7ee;
  font-size: 0.82rem;
  line-height: 1.35;
}

.rr-similar-feed-item__date {
  margin: 0;
  color: var(--rr-accent-soft);
  font-size: 0.76rem;
  font-weight: 640;
}

.rr-register-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
}

.rr-register-modal.is-open {
  display: block;
}

.rr-register-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 14, 0.68);
}

.rr-register-modal__dialog {
  position: relative;
  width: min(560px, calc(100% - 2rem));
  margin: 1rem auto;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  border: 1px solid #303754;
  border-radius: 14px;
  background: #0c111d;
  padding: 1rem;
}

.rr-register-modal__close {
  position: absolute;
  top: 0.4rem;
  right: 0.55rem;
  background: transparent;
  border: 0;
  color: #dbe3f7;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.rr-register-modal__dialog h2 {
  margin: 0 0 0.36rem;
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.35rem);
}

.rr-register-modal__dialog p {
  margin: 0;
  color: #cbd2e7;
  font-size: 0.96rem;
  text-align: center;
}

.rr-register-form {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.48rem;
}

.rr-register-split {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  align-items: start;
}

.rr-register-split--stack {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0.8rem !important;
}

.rr-register-form--manual,
.rr-register-form--social {
  margin-top: 0;
}

.rr-register-split--stack .rr-register-form--social,
.rr-register-split--stack .rr-register-form--manual {
  width: min(100%, 380px);
}

.rr-register-form--social {
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.2rem;
  padding: 0.4rem 0.25rem;
}

.rr-register-split__divider {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 0.1rem 0 0.2rem;
}

.rr-register-split--stack .rr-register-split__divider {
  width: 100%;
  justify-items: center;
  padding: 0.05rem 0 0.1rem;
}

.rr-register-split__divider span {
  display: inline-block;
  color: #d2dbef;
  font-size: 1.02rem;
  font-weight: 800;
}

.rr-register-form label {
  display: grid;
  gap: 0.2rem;
}

.rr-register-form__label {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  font-size: 0.8rem;
  color: #d2dbef;
  font-weight: 700;
}

.rr-register-form .rr-required {
  display: inline;
  color: #ff7b9d;
  line-height: 1;
}

.rr-register-form__error {
  margin-top: 0.58rem !important;
  margin-bottom: 0 !important;
  padding: 0.45rem 0.58rem;
  border: 1px solid #7f1d1d;
  border-radius: 8px;
  background: rgba(127, 29, 29, 0.22);
  color: #fecaca !important;
  font-size: 0.84rem !important;
}

.rr-register-form input {
  width: 100%;
  background: #ffffff;
  border: 1px solid #c8d0e4;
  border-radius: 8px;
  color: #111623;
  padding: 0.56rem 0.66rem;
}

.rr-register-form input::placeholder {
  color: #6b7280;
}

.rr-register-form input[type="hidden"] {
  display: none;
}

.rr-register-form input.is-attention {
  border-color: #ef476f;
  box-shadow: 0 0 0 2px rgba(239, 71, 111, 0.2);
  animation: rr-shake 220ms ease-in-out 2;
}

.rr-register-form button {
  background: linear-gradient(135deg, var(--rr-accent), #6f2fff);
  border: 0;
  color: #fff;
  border-radius: 8px;
  padding: 0.58rem 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.rr-register-form__linkedin {
  background: #0a66c2 !important;
}

.rr-register-form__linkedin-wrap {
  margin-top: 0.2rem;
}

.rr-register-form__social-copy,
.rr-register-form__manual-copy {
  display: none !important;
}

.rr-register-form__linkedin-wrap .nsl-container,
.rr-register-form__linkedin-wrap .nsl-container-buttons,
.rr-register-form__linkedin-wrap .nsl-button {
  width: 100%;
}

.rr-register-form__linkedin-wrap .nsl-container {
  margin: 0 !important;
}

.rr-register-form__linkedin-wrap {
  width: min(100%, 340px);
  margin-top: 0;
}

@keyframes rr-shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-4px);
  }
  50% {
    transform: translateX(4px);
  }
  75% {
    transform: translateX(-3px);
  }
  100% {
    transform: translateX(0);
  }
}

.rr-subscribe-page__head p {
  margin: 0;
  color: #384152;
  font-size: 1rem;
}

.rr-subscribe-page__card {
  margin-top: 0.9rem;
  background: #ffffff;
  border: 1px solid var(--rr-accent);
  border-radius: 12px;
  padding: 1rem;
}

.rr-subscribe-page .rr-subscribe__inner {
  grid-template-columns: 1fr;
}

.rr-subscribe-page__form {
  display: grid;
  gap: 0.72rem;
}

.rr-subscribe-page__field label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #131826;
}

.rr-subscribe-page__field label span {
  color: #ff8fa3;
}

.rr-subscribe-page__field input {
  width: 100%;
  background: #f7f8fc;
  border: 1px solid #c8d0e4;
  color: #111623;
  border-radius: 8px;
  padding: 0.6rem 0.7rem;
}

.rr-subscribe-page__field textarea {
  width: 100%;
  background: #f7f8fc;
  border: 1px solid #c8d0e4;
  color: #111623;
  border-radius: 8px;
  padding: 0.6rem 0.7rem;
  resize: vertical;
  min-height: 120px;
}

.rr-form-notice {
  margin: 0 0 0.75rem;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}

.rr-form-notice--success {
  border: 1px solid #1f7a43;
  background: rgba(31, 122, 67, 0.18);
  color: #c8f3d9;
}

.rr-form-notice--error {
  border: 1px solid #8a2b3a;
  background: rgba(138, 43, 58, 0.2);
  color: #ffd3da;
}

.rr-subscribe-page__form button {
  margin-top: 0.22rem;
  width: 100%;
  background: linear-gradient(135deg, var(--rr-accent), #6f2fff);
  border: 0;
  color: #fff;
  border-radius: 8px;
  padding: 0.64rem 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.rr-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) minmax(260px, 1fr);
  gap: 1rem;
  align-items: start;
}

.rr-single-layout__main {
  width: 100%;
}

.rr-single-rail {
  background: rgba(15, 17, 21, 0.88);
  border: 1px solid var(--rr-border);
  border-radius: 14px;
  padding: 0.8rem;
}

.rr-single__head h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.05;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.015em;
}

.rr-single__excerpt {
  margin: 0 0 1rem;
  color: #cfd7ee;
  font-size: clamp(1rem, 1.55vw, 1.2rem);
  font-style: italic;
  line-height: 1.4;
}

.rr-single__thumb {
  margin: 0 0 0.55rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--rr-border);
}

.rr-single__meta {
  margin: 0 0 1rem;
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.rr-single__tags,
.rr-single__date {
  margin: 0;
  color: var(--rr-accent-soft);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  font-weight: 620;
  line-height: 1.3;
}

.rr-single__tags {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
}

.rr-single__tag-icon {
  font-size: 0.95em;
}

.rr-single__date-icon {
  font-size: 0.95em;
  margin-right: 0.24rem;
}

.rr-single__meta-sep {
  color: var(--rr-accent-soft);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  font-weight: 620;
  line-height: 1.3;
}

.rr-single__tags a {
  color: var(--rr-accent-soft);
}

.rr-single__tags a:hover {
  color: #d6b6ff;
}

.rr-single__content > * {
  max-width: 100%;
}

.rr-single__content p,
.rr-single__content li {
  color: #dde2f1;
}

.rr-single__company-cta {
  margin-top: 1.15rem;
  border: 1px solid #40305d;
  border-radius: 12px;
  background: linear-gradient(125deg, #1b1230 0%, #101424 65%);
  padding: 0.85rem 0.95rem;
}

.rr-single__company-cta p {
  margin: 0 0 0.58rem;
  color: #e6e0ff;
  font-size: 0.95rem;
}

.rr-single__company-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--rr-accent), #6f2fff);
  border: 1px solid var(--rr-accent);
  color: #fff;
  border-radius: 999px;
  padding: 0.5rem 0.82rem;
  font-size: 0.84rem;
  font-weight: 700;
}

.rr-single__company-cta-btn:hover {
  color: #fff;
  border-color: #d8baff;
  box-shadow: 0 6px 14px rgba(111, 47, 255, 0.28);
}

.rr-subscribe--compact {
  margin-top: 0;
}

.rr-single-rail .rr-subscribe--hero.rr-subscribe--compact {
  top: 0;
}

.rr-single-rail > .rr-subscribe--hero {
  margin-bottom: 0.85rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(155, 77, 255, 0.2);
}

.rr-single-rail > .rr-subscribe--hero + .rr-single-rail__latest {
  margin-top: 0.95rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(155, 77, 255, 0.24);
}

.rr-subscribe--compact .rr-subscribe__inner {
  grid-template-columns: 1fr;
  gap: 0.55rem;
  padding: 0.68rem 0.74rem;
}

.rr-subscribe--compact h2 {
  font-size: 1rem;
}

.rr-subscribe--compact p {
  font-size: 0.82rem;
  margin-top: 0.18rem;
}

.rr-subscribe--compact input[type="email"],
.rr-subscribe--compact input[type="text"] {
  padding: 0.5rem 0.6rem;
  font-size: 0.86rem;
}

.rr-subscribe--compact input[type="submit"],
.rr-subscribe--compact button {
  padding: 0.5rem 0.62rem;
  font-size: 0.86rem;
}

.rr-single-rail__latest {
  margin-top: 0.8rem;
}

.rr-single-rail__latest--posts {
  margin-top: 0;
}

.rr-single-rail__latest .rr-section-head {
  margin-bottom: 0.55rem;
  justify-content: center;
}

.rr-single-rail__latest .rr-section-head h2 {
  font-size: 1.24rem;
  text-align: center;
}

.rr-single-rail-item {
  border-top: 1px solid #2b3140;
  padding: 0.6rem 0 0.7rem;
}

.rr-single-rail-item:first-of-type {
  border-top: 0;
  padding-top: 0.2rem;
}

.rr-single-rail-item__title {
  margin: 0 0 0.42rem;
  font-size: 0.95rem;
  line-height: 1.2;
}

.rr-single-rail-item__image {
  width: 100%;
  height: 118px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #2b3140;
}

.rr-single-rail-item--placeholder .rr-single-rail-item__title {
  color: #d3d8e8;
}

.rr-single-feed {
  margin-top: 1rem;
  background: rgba(15, 17, 21, 0.88);
  border: 1px solid var(--rr-border);
  border-radius: 14px;
  padding: 0.95rem;
}

.rr-single-feed__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.rr-single-feed-item {
  background: #0c1018;
  border: 1px solid #2b3140;
  border-radius: 10px;
  overflow: hidden;
}

.rr-single-feed-item__image {
  width: 100%;
  height: 132px;
  object-fit: cover;
}

.rr-single-feed-item__body {
  padding: 0.62rem 0.68rem 0.72rem;
}

.rr-single-feed-item__title {
  margin: 0 0 0.42rem;
  font-size: 0.98rem;
  line-height: 1.25;
}

.rr-single-feed-item__excerpt {
  margin: 0 0 0.52rem;
  color: #cfd7ee;
  font-size: 0.86rem;
  line-height: 1.35;
}

.rr-single-feed-item__date {
  margin: 0;
  color: var(--rr-accent-soft);
  font-size: 0.78rem;
  font-weight: 640;
}

.rr-single-feed-item--placeholder .rr-single-feed-item__title {
  color: #d3d8e8;
}

.rr-footer {
  border-top: 1px solid var(--rr-border);
  background: #080b12;
  margin-top: 2.2rem;
}

.rr-footer__top {
  padding: 2rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.rr-newsletter,
.rr-footer__links {
  background: #111522;
  border: 1px solid var(--rr-border);
  border-radius: 14px;
  padding: 1rem;
}

.rr-newsletter h2,
.rr-footer__links h2 {
  margin-top: 0;
}

.rr-newsletter input[type="email"],
.rr-newsletter input[type="text"] {
  width: 100%;
  background: #090c13;
  border: 1px solid #3a4155;
  color: #fff;
  border-radius: 8px;
  padding: 0.65rem 0.7rem;
}

.rr-newsletter button,
.rr-newsletter input[type="submit"] {
  margin-top: 0.5rem;
  background: linear-gradient(135deg, var(--rr-accent), #6f2fff);
  border: 0;
  color: #fff;
  border-radius: 8px;
  padding: 0.62rem 0.9rem;
  font-weight: 700;
}

.rr-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.rr-footer__bottom {
  border-top: 1px solid var(--rr-border);
  padding: 0.8rem 0 1rem;
  color: var(--rr-muted);
  font-size: 0.9rem;
}

@media (max-width: 1180px) {
  .rr-latest__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .rr-nav,
  .rr-header__auth,
  .rr-header__sub {
    display: none;
  }

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

  .rr-mobile-panel {
    display: none;
  }

  .rr-mobile-panel .rr-mobile-nav__list,
  .rr-mobile-panel .rr-mobile-nav__list.menu,
  .rr-mobile-panel .rr-mobile-cats__menu,
  .rr-mobile-panel .rr-mobile-cats__menu.menu {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.35rem !important;
    width: 100% !important;
  }

  .rr-mobile-panel .rr-mobile-nav__list > li,
  .rr-mobile-panel .rr-mobile-cats__menu > li {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .rr-mobile-panel .rr-mobile-nav__list > li > a,
  .rr-mobile-panel .rr-mobile-cats__menu > li > a {
    display: block !important;
    width: 100% !important;
    padding: 0.32rem 0.15rem !important;
  }

  .rr-header__inner {
    min-height: 84px;
    padding: 0.5rem 0;
  }

  .rr-brand .custom-logo,
  .rr-brand img {
    max-height: 72px;
    height: auto;
    width: auto;
  }

  .rr-site-kicker p {
    font-size: 24px;
  }

  .rr-subscribe--hero {
    --rr-sticky-top: 0px;
    top: 0;
  }

  .rr-subscribe--hero .rr-subscribe__inner {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding: 0.45rem 0.6rem;
  }

  .rr-subscribe--hero h2 {
    font-size: 0.98rem;
    line-height: 1.15;
  }

  .rr-subscribe--hero p {
    display: none;
  }

  .rr-subscribe--hero .rr-subscribe__form-wrap form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.35rem;
    align-items: center;
  }

  .rr-subscribe--hero .rr-subscribe__form-wrap input[type="email"],
  .rr-subscribe--hero .rr-subscribe__form-wrap input[type="text"] {
    margin: 0;
    padding: 0.45rem 0.55rem;
    font-size: 0.86rem;
  }

  .rr-subscribe--hero .rr-subscribe__form-wrap input[type="submit"],
  .rr-subscribe--hero .rr-subscribe__form-wrap button {
    margin-top: 0;
    width: auto;
    white-space: nowrap;
    padding: 0.45rem 0.7rem;
    font-size: 0.84rem;
  }

  .rr-fold {
    grid-template-columns: 1fr;
  }

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

  .rr-single {
    max-width: 100%;
  }

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

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

  .rr-footer__top {
    grid-template-columns: 1fr;
  }

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

  .rr-news-feed__right {
    border-left: 0;
    border-top: 1px solid var(--rr-border);
    padding: 0.8rem 0 0;
  }

  .rr-subscribe__inner {
    grid-template-columns: 1fr;
  }

  .rr-subscribe--hero.is-popup {
    position: sticky;
    top: 0;
  }

  .rr-discovery__cols {
    grid-template-columns: 1fr;
  }

  .rr-products-strip__track {
    grid-auto-columns: calc((100% - 0.8rem) / 2);
  }

  .rr-marketplace__layout,
  .rr-job-board__layout,
  .rr-market-company__layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .rr-wrap {
    width: min(100% - 1rem, var(--rr-max));
  }

  .rr-header__inner {
    flex-direction: row;
    align-items: center;
  }

  .rr-header__auth {
    margin-left: 0;
  }

  .rr-nav {
    margin-left: 0;
    width: 100%;
    overflow: auto;
  }

  .rr-nav__list {
    gap: 0.5rem 0.9rem;
    min-width: max-content;
    justify-content: flex-start;
  }

  .rr-brand img {
    max-height: 68px;
    height: auto;
  }

  .rr-subnav {
    overflow: auto;
    flex: 1;
  }

  .rr-subnav__list {
    min-width: max-content;
  }

  .rr-fold__mini-grid,
  .rr-latest__grid {
    grid-template-columns: 1fr;
  }

  .rr-single-feed__grid {
    grid-template-columns: 1fr;
  }

  .rr-feed-item {
    grid-template-columns: 1fr;
  }

  .rr-products-strip__track {
    grid-auto-columns: 100%;
  }

  .rr-products-card__link {
    grid-template-columns: 96px minmax(0, 1fr);
    min-height: 90px;
  }

  .rr-products-card__image {
    height: 76px;
  }

  .rr-feed-item__image {
    height: 170px;
  }

  .rr-market-card__link {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .rr-market-card__logo {
    width: 52px;
    height: 52px;
    border-radius: 12px;
  }

  .rr-market-company__intro {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .rr-market-company__logo {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    font-size: 1.4rem;
  }

  .rr-marketplace__hero h1,
  .rr-job-board__hero h1 {
    font-size: clamp(1.2rem, 5vw, 1.85rem);
  }

  .rr-register-split {
    grid-template-columns: 1fr;
  }

  .rr-register-split__divider {
    padding: 0.2rem 0;
  }

  .rr-job-card__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .rr-job-card__row {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .rr-job-card__logo {
    width: 52px;
    height: 52px;
    border-radius: 12px;
  }

  .rr-job-card__posted {
    white-space: normal;
  }

  .rr-similar-feed__grid {
    grid-template-columns: 1fr;
  }
}
