@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap");

.chat-appbar-title img {
  width: 17px;
  height: 17px;
  object-fit: contain;
  filter: invert(1) brightness(5);
}

.chat-appbar-title::before {
  display: none;
}

.chat-composer {
  background: #242424;
}

.chat-composer .composer-mic {
  width: 28px;
  height: 32px;
  padding: 0;
  display: grid;
  place-items: center;
}

.composer-mic i {
  position: relative;
  display: block;
  width: 8px;
  height: 13px;
  border: 1.7px solid #f1f1f1;
  border-radius: 9px;
}

.composer-mic i::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 12px;
  height: 8px;
  border: 1.7px solid #f1f1f1;
  border-top: 0;
  border-radius: 0 0 9px 9px;
  transform: translateX(-50%);
}

.composer-mic i::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 8px;
  height: 1.7px;
  border-radius: 2px;
  background: #f1f1f1;
  box-shadow: 0 -2px 0 -0.1px #f1f1f1;
  transform: translateX(-50%);
}

.chat-composer .composer-voice {
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 50%;
  background: #e5e5e5;
  display: grid;
  place-items: center;
}

.composer-voice span {
  height: 14px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.composer-voice i {
  display: block;
  width: 2px;
  border-radius: 4px;
  background: #3f3f3f;
}

.composer-voice i:nth-child(1) {
  height: 6px;
}

.composer-voice i:nth-child(2) {
  height: 13px;
}

.composer-voice i:nth-child(3) {
  height: 11px;
}

.composer-voice i:nth-child(4) {
  height: 8px;
}

.composer-voice i:nth-child(5) {
  height: 5px;
}

:root {
  font-family: Rubik, Arial, sans-serif;
}

/* Единый шрифт сайта. */
h1,
h2,
h3,
.steps > article > span,
.prompt-grid p,
.orbit-core b,
.faq-list button,
.final-cta::before,
.final-cta::after {
  font-family: Rubik, Arial, sans-serif;
}

.suggestions button,
.faq-list button span {
  font-family: Rubik, Arial, sans-serif;
}

/* Тёмно-серый blur в цвет интерфейса ChatGPT на первом экране. */
.site-header {
  position: fixed;
  z-index: 20;
  isolation: isolate;
  top: 0;
  width: min(1180px, calc(100% - 56px));
  border-bottom: 0;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.site-header::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translate(-50%, -50%);
  border-radius: 0;
  background: rgba(36, 36, 36, 0.86);
  -webkit-backdrop-filter: blur(12px) saturate(110%);
  backdrop-filter: blur(12px) saturate(110%);
  -webkit-mask-image: none;
  mask-image: none;
}

.site-header::after {
  display: none;
}

.assistant-sign {
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  object-fit: contain;
  background: transparent !important;
  filter: invert(1) brightness(5);
}
