:root {
  --rs-bg: #080808;
  --rs-ink: #f0f0f0;
  --rs-muted: #666;
  --rs-surface: #111;
  --rs-surface-soft: #0d0d0d;
  --rs-border: #1e1e1e;
  --rs-signal: #fff;
  --rs-signal-dark: #ccc;
  --rs-ocean: #aaa;
  --rs-mint: #888;
  --rs-radius: 10px;
  --rs-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  --rs-space-1: 0.5rem;
  --rs-space-2: 0.875rem;
  --rs-space-3: 1.25rem;
  --rs-space-4: 1.8rem;
  --rs-space-5: 2.8rem;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--rs-ink);
  background: var(--rs-bg);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 var(--rs-space-2);
  line-height: 1.2;
  font-family: "Space Grotesk", sans-serif;
  color: #eef3ff;
  text-shadow: 0 0 8px rgba(120, 162, 230, 0.08);
}

h1,
h2 {
  background: linear-gradient(92deg, #ffffff 0%, #edf3ff 54%, #d5e3ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 14px rgba(120, 162, 230, 0.16);
}

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
}

a {
  color: var(--rs-ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  opacity: 0.7;
  transition: opacity 0.15s;
}
a:hover {
  opacity: 1;
}

.rs-container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.rs-site-header {
  backdrop-filter: blur(16px);
  background: rgba(8, 8, 8, 0.92);
  border-bottom: 1px solid rgba(99, 102, 241, 0.12);
  z-index: 90;
}

@media (min-width: 960px) {
  .rs-site-header {
    position: sticky;
    top: 0;
  }
}

.rs-header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--rs-space-3);
  padding: var(--rs-space-2) 0;
}

.rs-main-nav {
  margin-left: 0.35rem;
}

.rs-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  opacity: 1;
}

.rs-logo:hover {
  opacity: 1;
}

.rs-logo-img {
  display: block;
  width: clamp(150px, 18vw, 210px);
  height: auto;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.rs-logo:hover .rs-logo-img {
  opacity: 0.75;
}

.rs-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 1rem;
}

.rs-menu a {
  text-decoration: none;
  color: #bbb;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s;
  padding: 0.25rem 0;
  position: relative;
}

.rs-menu a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: #6366f1;
  transform: scaleX(0);
  transition: transform 0.2s ease;
  transform-origin: left;
}

.rs-menu a:hover {
  color: #fff;
}

.rs-menu a:hover::after {
  transform: scaleX(1);
}

.rs-header-ctas,
.rs-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.rs-header-ctas {
  margin-left: auto;
}

.rs-section .rs-cta-row,
.rs-content-card .rs-cta-row {
  margin-top: var(--rs-space-4);
}

.rs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1;
  padding: 0.78rem 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.rs-btn:hover {
  transform: none;
}

.rs-btn-primary {
  background: #6366f1;
  color: #fff;
  box-shadow: none;
  font-weight: 700;
  border-color: transparent;
}

.rs-btn-primary:hover {
  background: #4f52e0;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.rs-btn-ghost {
  border-color: #242424;
  color: #b2b2b2;
  background: #0f0f0f;
}

.rs-btn-ghost:hover {
  border-color: rgba(99, 102, 241, 0.4);
  color: #a5b4fc;
  background: #121212;
}

.rs-header-ctas .rs-btn {
  min-height: 40px;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  font-size: 0.88rem;
}

.rs-hero .rs-cta-row .rs-btn {
  min-height: 46px;
  padding-inline: 1.05rem;
}

.rs-section {
  padding: clamp(1.35rem, 3.4vw, 3rem) 0;
}

.rs-hero {
  position: relative;
  overflow: hidden;
}

/* Tighten only the hero -> demo transition on the homepage */
.rs-hero.rs-section {
  padding-bottom: clamp(1.1rem, 2.2vw, 1.9rem);
}

.rs-demo-reels.rs-section {
  padding-top: clamp(1.2rem, 2.3vw, 2rem);
}

.rs-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 60% 40%, rgba(99, 102, 241, 0.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.rs-hero .rs-container {
  position: relative;
  z-index: 1;
}

.rs-hero-grid {
  display: grid;
  gap: var(--rs-space-4);
  grid-template-columns: 1.2fr 0.8fr;
}

.rs-kicker {
  margin: 0 0 0.8rem;
  color: #6366f1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 600;
}

.rs-hero-panel {
  background: linear-gradient(145deg, #111 0%, #0f0e1a 100%);
  color: #ccc;
  padding: 1.35rem;
  border-radius: var(--rs-radius);
  border: 1px solid rgba(99, 102, 241, 0.2);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.4), inset 0 1px 0 rgba(99,102,241,0.08);
}

.rs-panel-eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6366f1;
  font-family: "IBM Plex Mono", monospace;
}

.rs-hero-panel h2 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.45rem;
}

.rs-panel-intro {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #8e8e8e;
}

.rs-hero-panel ul {
  padding-left: 0;
  list-style: none;
  margin: 0.9rem 0 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.rs-hero-panel li {
  font-size: 0.95rem;
  position: relative;
  padding-left: 1rem;
}

.rs-hero-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #6366f1;
  box-shadow: 0 0 6px rgba(99,102,241,0.6);
}

.rs-panel-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.1rem;
}

.rs-panel-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.2rem 0.55rem;
  border: 1px solid #232323;
  border-radius: 999px;
  color: #7b7b7b;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.rs-panel-note {
  font-size: 0.78rem;
  color: #444;
  margin: 0.7rem 0 0;
}

.rs-muted {
  background: #0d0d0d;
}

.rs-gradient {
  background: #0d0d0d;
  border-top: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e;
  color: #e0e0e0;
}

.rs-gradient-inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rs-space-4);
  align-items: center;
  justify-content: space-between;
}

.rs-grid {
  display: grid;
  gap: 1rem;
}

.rs-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rs-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rs-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rs-grid-pricing {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rs-card,
.rs-content-card,
.rs-pricing-card {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: var(--rs-radius);
  padding: 1.4rem;
  box-shadow: none;
  transition: border-color 0.2s;
}

.rs-card:hover,
.rs-pricing-card:hover {
  border-color: #333;
  transform: none;
}

.rs-pricing-card {
  background: #111;
}

.rs-page-shell {
  display: grid;
  gap: 1rem;
  padding: 1.7rem 0 3rem;
}

/* Feature block — icon + heading */
.rs-feature-block {
  position: relative;
  padding-top: 1.8rem;
}

.rs-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(139, 92, 246, 0.08) 100%);
  border: 1px solid rgba(99, 102, 241, 0.25);
  margin-bottom: 1rem;
  color: #818cf8;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.rs-feature-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.rs-feature-block:hover .rs-feature-icon {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.14) 100%);
  border-color: rgba(99, 102, 241, 0.45);
  color: #a5b4fc;
}

.rs-price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.rs-price strong {
  font-size: 2rem;
  color: #fff;
  text-shadow: none;
}

.rs-microcopy {
  color: var(--rs-muted);
  font-size: 0.9rem;
}

.rs-card-num {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #333;
  margin-bottom: 0.6rem;
  font-family: "IBM Plex Mono", monospace;
}

.rs-table-wrap {
  overflow-x: auto;
}

.rs-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--rs-surface-soft);
}

.rs-table th,
.rs-table td {
  border: 1px solid var(--rs-border);
  padding: 0.75rem;
  text-align: left;
}

.rs-table th {
  background: #161616;
  color: #888;
  font-weight: 500;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.rs-final-cta {
  text-align: center;
}

/* Demo Reels Section */
.rs-section-lead {
  color: var(--rs-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 0 var(--rs-space-4);
}

.rs-demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--rs-space-4);
  margin-bottom: var(--rs-space-4);
}

.rs-demo-frame {
  margin: 0;
  border-radius: var(--rs-radius);
  overflow: hidden;
  border: 1px solid var(--rs-border);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
  background: var(--rs-surface);
}

.rs-demo-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.55);
  border-color: rgba(99, 102, 241, 0.3);
}

.rs-demo-link {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.rs-demo-frame img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.82) contrast(1.04) saturate(0.9);
  transition: filter 0.25s ease, transform 0.3s ease;
}

.rs-demo-frame:hover img {
  filter: brightness(0.6) contrast(1.06) saturate(0.8);
  transform: scale(1.02);
}

.rs-demo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.03em;
  background: rgba(99, 102, 241, 0.18);
  opacity: 0;
  transition: opacity 0.25s ease;
  backdrop-filter: blur(2px);
}

.rs-demo-link:hover .rs-demo-overlay {
  opacity: 1;
}

.rs-lightbox-open {
  overflow: hidden;
}

.rs-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(5, 6, 12, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 0.45rem;
}

.rs-lightbox[hidden] {
  display: none !important;
}

.rs-lightbox-image {
  width: auto;
  max-width: min(1120px, 97vw);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(99, 102, 241, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

.rs-lightbox-actions {
  display: flex;
  justify-content: center;
}

[data-rs-lightbox-live][hidden] {
  display: none !important;
}

.rs-lightbox-close {
  position: absolute;
  top: 0.7rem;
  right: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(10, 10, 16, 0.75);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.rs-lightbox-close:hover {
  border-color: rgba(99, 102, 241, 0.7);
}

.rs-demo-placeholder {
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #18161f, #111019);
  gap: 0.5rem;
  color: var(--rs-muted);
}

.rs-demo-placeholder span {
  font-size: 2.5rem;
  opacity: 0.5;
}

.rs-demo-placeholder p {
  font-size: 0.85rem;
  margin: 0;
  opacity: 0.5;
}

.rs-demo-frame figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  color: var(--rs-muted);
  border-top: 1px solid var(--rs-border);
}

.rs-cta-center {
  justify-content: center;
}

@media (max-width: 700px) {
  .rs-demo-grid {
    grid-template-columns: 1fr;
  }

  .rs-lightbox-image {
    max-height: 82vh;
  }
}

/* Domain Banner */
.rs-domain-banner {
  background: #0d0d0d;
  border-top: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e;
}

.rs-domain-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--rs-space-5);
  align-items: center;
}

.rs-domain-example {
  background: #0a0a0a;
  border: 1px solid #1e1e1e;
  border-radius: var(--rs-radius);
  padding: 1.4rem 1.8rem;
  min-width: 280px;
  text-align: center;
}

.rs-domain-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rs-muted);
  margin: 0 0 0.6rem;
}

.rs-domain-url {
  display: block;
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: 0.9rem;
  color: #ddd;
  background: #161616;
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  border: 1px solid #2a2a2a;
  word-break: break-all;
}

.rs-domain-hint {
  font-size: 0.72rem;
  color: var(--rs-muted);
  margin: 0.5rem 0 0;
}

@media (max-width: 700px) {
  .rs-domain-banner-inner {
    grid-template-columns: 1fr;
  }
  .rs-domain-example {
    min-width: unset;
  }
}

.rs-form input[type="text"],
.rs-form input[type="email"],
.rs-form textarea {
  width: 100%;
  padding: 0.7rem;
  border-radius: 10px;
  border: 1px solid #222;
  background: #0f0f0f;
  color: var(--rs-ink);
  transition: border-color 0.15s;
}

.rs-form input[type="text"]:focus,
.rs-form input[type="email"]:focus,
.rs-form textarea:focus {
  outline: none;
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.08);
}

.rs-inline-check {
  display: flex !important;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 0;
  font-weight: 400;
}

.rs-inline-check input[type="checkbox"] {
  width: auto;
  margin-top: 0.2rem;
  accent-color: #6366f1;
}

.rs-inline-check span {
  color: rgba(240, 240, 240, 0.9);
}

.rs-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.rs-hidden-hp {
  position: absolute;
  left: -9999px;
}

.rs-demo-shell {
  border: 1px solid var(--rs-border);
  border-radius: var(--rs-radius);
  background: #0d0d0d;
}

.rs-demo-top,
.rs-demo-track,
.rs-demo-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--rs-border);
}

.rs-demo-hidden {
  display: none;
  margin: 0;
}

.rs-demo-hidden.is-visible {
  display: block;
}

.rs-video-wrap {
  position: relative;
  overflow: hidden;
  padding-bottom: 56.25%;
  border-radius: var(--rs-radius);
}

.rs-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.rs-assistant-log {
  max-height: 220px;
  overflow-y: auto;
  background: #120e1e;
  border: 1px solid var(--rs-border);
  border-radius: 10px;
  padding: 0.8rem;
  margin-bottom: 0.8rem;
}

.rs-assistant-row {
  display: flex;
  gap: 0.5rem;
}

.rs-assistant-row input {
  flex: 1;
}

.rs-assistant-line {
  margin-bottom: 0.6rem;
}

.rs-assistant-line strong {
  font-family: "Space Grotesk", sans-serif;
}

.rs-site-footer {
  background: #0c0b18;
  color: #9090a8;
  padding: 2.4rem 0 1rem;
  border-top: 1px solid rgba(99, 102, 241, 0.15);
}

.rs-footer-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rs-footer-grid h2 {
  color: #6366f1;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  background: none;
  -webkit-text-fill-color: unset;
}

.rs-footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rs-footer-grid li {
  margin: 0.5rem 0;
}

.rs-footer-grid a {
  color: #8888a8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s;
}

.rs-footer-grid a:hover {
  color: #c4b5fd;
}

.rs-footer-base {
  border-top: 1px solid rgba(99, 102, 241, 0.12);
  margin-top: 1.5rem;
  padding-top: 1rem;
  font-size: 0.82rem;
  color: #55556a;
  text-align: center;
}

.rs-footer-cookie-link {
  margin-left: 0.5rem;
  color: #a5b4fc;
  text-decoration: none;
}

.rs-footer-cookie-link:hover {
  color: #c4b5fd;
}

.rs-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  background: rgba(8, 8, 12, 0.96);
  border-top: 1px solid rgba(99, 102, 241, 0.25);
  backdrop-filter: blur(6px);
}

.rs-cookie-banner__inner {
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.rs-cookie-banner__inner p {
  margin: 0;
  color: #c8c8d4;
  font-size: 0.88rem;
}

.rs-cookie-banner__inner a {
  color: #a5b4fc;
}

.rs-cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

@media (max-width: 780px) {
  .rs-cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .rs-cookie-banner__actions {
    width: 100%;
  }

  .rs-cookie-banner__actions .rs-btn {
    flex: 1;
  }
}

/* Access modes */
.rs-access-modes {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

/* Editor content output */
.rs-page-editor-content {
  display: flex;
  flex-direction: column;
  gap: var(--rs-space-3);
}

.rs-page-editor-content .rs-content-card,
.rs-page-editor-content section {
  background: var(--rs-surface);
  border: 1px solid var(--rs-border);
  border-radius: var(--rs-radius);
  padding: var(--rs-space-4);
}

.rs-page-editor-content h1,
.rs-page-editor-content h2,
.rs-page-editor-content h3 {
  margin-top: 0;
}

.rs-page-editor-content ul,
.rs-page-editor-content ol {
  padding-left: 1.4em;
  color: var(--rs-ink);
}

.rs-page-editor-content li {
  margin-bottom: 0.4em;
}

.rs-page-editor-content p {
  color: rgba(240, 240, 240, 0.8);
}

/* Form messages */
.rs-message {
  padding: 1rem;
  border-radius: var(--rs-radius);
  margin-bottom: 1.5rem;
  border-left: 4px solid;
}

.rs-message-success {
  background: rgba(34, 197, 94, 0.1);
  border-color: #22c55e;
  color: #86efac;
}

.rs-message-error {
  background: rgba(239, 68, 68, 0.1);
  border-color: #ef4444;
  color: #fca5a5;
}

.rs-message strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--rs-signal);
}

.rs-pending-notice {
  margin: 1rem 0 1.25rem;
  padding: 0.95rem 1rem;
  border-left: 4px solid #f59e0b;
  border-radius: var(--rs-radius);
  background: rgba(245, 158, 11, 0.12);
  color: #f8e7b2;
  font-size: 0.98rem;
  line-height: 1.55;
}

.rs-pending-notice strong {
  color: #fff3cd;
}
.rs-access-mode {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #0d0d0d;
  border: 1px solid #1e1e1e;
  border-radius: 8px;
  padding: 1rem 1.1rem;
}

.rs-access-mode strong {
  display: block;
  color: var(--rs-ink);
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.rs-access-mode p {
  margin: 0;
  font-size: 0.88rem;
  color: #888;
  line-height: 1.6;
}

.rs-access-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  min-width: 72px;
  justify-content: center;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

.rs-access-public {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.rs-access-limited {
  background: rgba(99, 102, 241, 0.12);
  color: #818cf8;
  border: 1px solid rgba(99, 102, 241, 0.25);
}

.rs-access-disabled {
  background: rgba(239, 68, 68, 0.10);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* FAQ accordion */
.rs-faq-list {
  display: grid;
  gap: 0.5rem;
}

.rs-faq-item {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: var(--rs-radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.rs-faq-item[open] {
  border-color: rgba(99, 102, 241, 0.3);
}

.rs-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--rs-ink);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.rs-faq-q::-webkit-details-marker {
  display: none;
}

.rs-faq-q::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 300;
  color: #6366f1;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  line-height: 1;
}

.rs-faq-item[open] .rs-faq-q::after {
  transform: rotate(45deg);
}

.rs-faq-item:hover:not([open]) {
  border-color: #2a2a2a;
}

.rs-faq-item:hover .rs-faq-q {
  color: #fff;
}

.rs-faq-a {
  padding: 0 1.3rem 1.1rem;
  color: #999;
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid #1a1a1a;
}

.rs-faq-a p {
  margin: 0.7rem 0 0;
}

@media (max-width: 960px) {
  .rs-header-inner,
  .rs-demo-top,
  .rs-demo-track,
  .rs-demo-contact,
  .rs-assistant-row {
    flex-direction: column;
    align-items: stretch;
  }

  .rs-main-nav {
    display: block;
    margin-left: 0;
    width: 100%;
  }

  .rs-menu {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.55rem 0.9rem;
  }

  .rs-menu a {
    font-size: 0.86rem;
  }

  .rs-header-ctas {
    margin-left: 0;
    width: 100%;
  }

  .rs-header-ctas .rs-btn {
    flex: 1;
  }

  .rs-hero-grid,
  .rs-grid-2,
  .rs-grid-3,
  .rs-grid-4,
  .rs-grid-pricing,
  .rs-footer-grid {
    grid-template-columns: 1fr;
  }
}

