:root {
  --rr-accent: #14b8a6;
  --rr-accent-2: #3b82f6;
  --rr-panel: rgba(15, 23, 42, 0.76);
  --rr-line: rgba(148, 163, 184, 0.22);
  --rr-text: #f8fafc;
  --rr-muted: #a8b4c7;
}

.rr-hide {
  display: none !important;
}

.rr-nav-logo-shell {
  opacity: 0;
  pointer-events: none;
}

.rr-nav-logo {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

.rr-brand-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}

.rr-brand-logo-shell {
  width: 92px;
  height: 92px;
  flex: 0 0 92px;
  padding: 10px;
  border: 1px solid rgba(20, 184, 166, 0.48);
  border-radius: 26px;
  background:
    radial-gradient(circle at 35% 22%, rgba(255, 255, 255, 0.98), rgba(236, 253, 245, 0.76) 46%, rgba(20, 184, 166, 0.16)),
    rgba(15, 23, 42, 0.18);
  box-shadow:
    0 24px 58px rgba(20, 184, 166, 0.28),
    0 0 0 8px rgba(20, 184, 166, 0.08);
}

.rr-brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(15, 23, 42, 0.18));
}

.rr-brand-row h1 {
  margin: 0 !important;
  line-height: 1.02 !important;
}

.rr-hero-actions {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.rr-manual-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(20, 184, 166, 0.42);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.56);
  color: var(--rr-text);
  padding: 0 18px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(20, 184, 166, 0.12);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.rr-manual-button:hover {
  transform: translateY(-1px);
  border-color: rgba(20, 184, 166, 0.78);
  background: rgba(20, 184, 166, 0.14);
}

.rr-manual-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.rr-manual-strip {
  position: relative;
  z-index: 10;
  width: min(100%, 920px);
  margin: 26px auto 8px;
  border: 1px solid var(--rr-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(20, 184, 166, 0.16), rgba(59, 130, 246, 0.1)),
    var(--rr-panel);
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.24);
}

.rr-manual-strip__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 22px 24px;
}

.rr-manual-strip__kicker {
  margin: 0 0 6px;
  color: #5eead4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.rr-manual-strip__title {
  margin: 0;
  color: var(--rr-text);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.rr-manual-strip__text {
  max-width: 620px;
  margin: 8px 0 0;
  color: var(--rr-muted);
  font-size: 14px;
  line-height: 1.65;
}

.rr-manual-strip__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.rr-manual-strip__link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--rr-accent), #0ea5e9);
  color: #ffffff;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(20, 184, 166, 0.22);
}

.rr-manual-strip__link:hover {
  filter: brightness(1.06);
}

.rr-manual-strip__ghost {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 8px;
  color: var(--rr-text);
  padding: 0 14px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.rr-manual-strip__ghost:hover {
  border-color: rgba(20, 184, 166, 0.64);
  color: #ccfbf1;
}

@media (max-width: 760px) {
  .rr-brand-row {
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
  }

  .rr-brand-logo-shell {
    width: 70px;
    height: 70px;
    flex-basis: 70px;
    padding: 8px;
    border-radius: 22px;
  }

  .rr-brand-row h1 {
    font-size: clamp(38px, 11vw, 48px) !important;
  }

  .rr-manual-strip {
    width: calc(100% - 32px);
    margin-top: 20px;
  }

  .rr-manual-strip__inner {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .rr-manual-strip__actions {
    justify-content: stretch;
  }

  .rr-manual-strip__link,
  .rr-manual-strip__ghost,
  .rr-manual-button {
    width: 100%;
  }
}
