h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-style: normal;
}

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.code {
  font-family: "Roboto mono", monospace;
}

.hidden {
  display: none;
}

hr {
  display: block;
  margin-top: 0.5em;
  width: 100%;
  color: rgba(0, 0, 0, 0.14);
  margin-bottom: 0.5em;
  margin-left: auto;
  margin-right: auto;
  border-style: inset;
  border-width: 0.5px;
}

html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  background: #f5f5f5;
  font-family: "Inter", sans-serif;
  width: 100%;
  height: 100%;
}

.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 100%;
  min-height: 100%;
  align-items: center;
  margin: 0 auto;
}

#landing-page {
  max-width: 1024px;
  width: 100%;
}

#landing-page main {
  gap: 96px;
  margin-top: 96px;
  padding: 0;
}

#landing-page .headline {
  text-align: center;
}

main {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  flex-grow: 1;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  position: relative;
  z-index: 5555;
  width: 100%;
}

header, main, footer {
  flex-shrink: 0;
}

.section-header {
  text-align: center;
}

.section-header h2 {
  font-weight: 600;
  text-align: center;
  font-size: 32px;
  margin: 0;
  padding: 0;
}

.section-header h5 {
  font-size: 18px;
  color: #64748B;
  margin: 12px 0;
}

.section-header h5 a {
  text-decoration: none;
  color: #334155;
}

.section-header h5 a:hover {
  color: #0F172A;
}

.noise {
  opacity: 0.2;
  position: fixed;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/noise-dark.png);
}

.radar {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  width: 955px;
  aspect-ratio: 1;
  background: rgba(0, 0, 0, 0.028);
  border-radius: 50%;
}

.ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid #e5e5e5;
}

.ring-1 {
  width: 99.9%;
  height: 99.9%;
}

.ring-2 {
  width: 75%;
  height: 75%;
}

.ring-3 {
  width: 50%;
  height: 50%;
}

.ring-4 {
  width: 30%;
  height: 30%;
}

.beam {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 1000px;
  height: 1000px;
  aspect-ratio: inherit;
  transform: rotate(-25deg);
  background: url("../img/beam.png") center/cover;
  animation: 100s rotate linear infinite;
}

.shake {
  animation: tilt-shake 0.2s linear 1s 3;
}

@keyframes rotate {
  100% {
    rotate: 1turn;
  }
}
@keyframes tilt-shake {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(0eg);
  }
  75% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
nav {
  width: 100%;
  max-width: 100%;
  position: fixed;
  top: 0;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  z-index: 8888;
  transition: all 0.14s ease-in-out;
  -webkit-transition: all 0.14s ease-in-out;
}

.nav-left {
  justify-content: flex-start;
}

.nav-center {
  display: flex;
  justify-content: flex-start;
  flex: 1;
  gap: 8px;
}

.nav-right {
  justify-content: flex-end;
  flex-basis: 30%;
}

.nav-left, .nav-right {
  display: flex;
  gap: 8px;
}

nav a.btn-plain {
  color: #0F172A;
  font-size: 13px;
}

nav a.active {
  color: #0F172A;
  background-color: #e5e5e5;
  border-radius: 6px;
}

.nav-container {
  padding: 16px;
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 9999;
  position: relative;
  box-sizing: border-box;
  width: 100%;
}

#mobile-nav {
  display: none;
}

.fixed {
  background-color: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.nav-ctas a:first-child {
  display: none;
}

.mobile-menu a:first-child {
  display: none;
}

.docs-nav {
  top: 0;
  background-color: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 0px;
  max-width: 100%;
}

#login-btn-mobile, #signup-btn-mobile, #github-btn-mobile {
  display: none;
}

.nav-item {
  position: relative;
}
.nav-item .ph-caret-down {
  transition: all 0.2s ease;
  -webkit-transition: all 0.1s ease;
}
.nav-item.has-dropdown:hover .resources-dropdown {
  display: flex;
}
.nav-item.has-dropdown:hover .ph-caret-down {
  transform: rotate(180deg);
}

.resources-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  flex-direction: column;
  background: white;
  border-radius: 8px;
  box-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075), 0 0 0 1px hsla(0, 0%, 0%, 0.05), 0 0.3px 0.4px hsla(0, 0%, 0%, 0.01), 0 0.9px 1.5px hsla(0, 0%, 0%, 0.025), 0 3.5px 6px hsla(0, 0%, 0%, 0.04);
  padding: 12px;
  min-width: 200px;
  gap: 8px;
  align-items: flex-start;
  justify-content: flex-start;
}
.resources-dropdown a.dropdown-btn {
  padding: 8px;
  white-space: nowrap;
  width: 100%;
  display: flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  gap: 10px;
  border-radius: 6px;
  transition: all 0.1s ease;
  -webkit-transition: all 0.1s ease;
}
.resources-dropdown a.dropdown-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}
.resources-dropdown .dropdown-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.resources-dropdown .dropdown-label .dropdown-title {
  font-weight: 600;
  color: #0F172A;
  font-size: 13px;
}
.resources-dropdown .dropdown-label .dropdown-description {
  font-size: 11px;
  color: #64748B;
}
.resources-dropdown .dropdown-btn i:first-child {
  background-color: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  width: 32px;
  height: 32px;
  color: #334155;
  display: flex;
  align-items: center;
  justify-content: center;
}
.resources-dropdown .dropdown-btn i:last-child {
  color: #CBD5E1;
  margin-left: 16px;
}

.btn {
  outline: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  box-sizing: border-box;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  height: 32px;
  padding: 0 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.14s ease-in-out;
  -webkit-transition: all 0.14s ease-in-out;
}

.btn-primary {
  background: #3B82F6;
  color: white;
}

.btn-primary:hover {
  background-color: #2563EB;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.btn-secondary {
  color: white;
  background-color: #334155;
}

.btn-secondary:hover {
  background-color: #252F3D;
}

.btn-tertiary {
  color: #334155;
  background-color: #fcfcfc;
  border: 1px solid rgba(0, 0, 0, 0.14);
}

.btn-tertiary:hover {
  color: #0F172A;
  background-color: #F1F5F9;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.28);
}

.btn-plain {
  border: none;
  color: #334155;
  box-shadow: none;
  border-radius: 0;
  font-weight: 500;
}

.btn-plain:hover {
  color: #0F172A;
}

.btn-large {
  font-size: 14px;
  font-weight: 600;
  height: 48px;
  padding: 0 24px;
  border-radius: 8px;
}

.btn-link {
  color: #334155;
}

.btn-link:hover {
  color: #0F172A;
}

span.btn-green {
  background: rgb(46, 179, 124);
}

span.btn-orange {
  background: rgb(245, 129, 65);
}

span.btn-purple {
  background: rgb(25, 40, 78);
}

.green {
  color: #22C55E;
}

.red {
  color: #EF4444;
}

.table-wrapper {
  width: 100%;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.services-table {
  width: 100%;
  table-layout: fixed;
  border-radius: 6px;
  background: white;
  overflow: hidden;
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
  font-size: 12px;
}
.services-table thead, .services-table tr {
  border-bottom: 1px solid #E2E8F0;
}
.services-table thead:last-child, .services-table tr:last-child {
  border-bottom: none;
}
.services-table th, .services-table td {
  padding: 12px;
  border-collapse: collapse;
  word-wrap: break-word;
}
.services-table thead tr th:first-child {
  border-top-left-radius: 6px;
}
.services-table thead tr th:last-child {
  border-top-right-radius: 6px;
}
.services-table tr td:first-child {
  border-bottom-left-radius: 6px;
}
.services-table tr td:first-child img {
  width: 24px;
  height: 24px;
  border-radius: 3px;
  border: none;
  vertical-align: middle;
  margin-right: 6px;
}
.services-table tr td:last-child {
  border-bottom-right-radius: 6px;
}
.services-table th {
  height: 40px;
  box-sizing: border-box;
  text-align: left;
  font-weight: 500;
  background: #F1F5F9;
}

.custom-table a {
  color: #3B82F6;
  text-decoration: none;
}

.custom-table a:hover {
  color: var #2563EB;
  text-decoration: underline;
}

.custom-table a.btn {
  color: #334155;
}

.custom-table a.btn:hover {
  color: #0F172A;
  text-decoration: none;
}

.custom-table th.timestamp-row {
  width: 180px;
}

.custom-table th.ip-row, .custom-table th.input-row, .custom-table th.output-row, .custom-table th.status-row {
  width: 110px;
}

.eight {
  width: 8%;
}

.ten {
  width: 10%;
}

.twenty {
  width: 20%;
}

.twentyfive {
  width: 25%;
}

.table-actions {
  text-align: right;
}

.error-response {
  cursor: help;
}

@media only screen and (max-width: 1440px) {
  .custom-table th.timestamp-row {
    width: auto;
  }
  .custom-table th.ip-row, .custom-table th.input-row, .custom-table th.output-row, .custom-table th.status-row {
    width: auto;
  }
}
@media only screen and (max-width: 768px) {
  th, td {
    padding: 8px;
  }
  td .btn span {
    display: none;
  }
}
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider-blue {
  background-color: #3B82F6;
}

input:focus + .slider-blue {
  box-shadow: 0 0 1px #3B82F6;
}

input:checked + .slider-green {
  background-color: #22C55E;
}

input:focus + .slider-green {
  box-shadow: 0 0 1px #22C55E;
}

input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

.facepile {
  margin: 32px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faces {
  position: relative;
  left: 9px;
}

.faces img {
  width: 36px;
  border-radius: 50%;
  margin-left: -20px;
  border: 2px solid #F8FAFC;
  box-sizing: border-box;
}

#landing-page header, #pricing header {
  max-width: 840px;
  margin: 0 auto;
}

#firebase header {
  max-width: 960px;
  margin: 0 auto;
}

header {
  font-weight: normal;
  align-items: center;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 151px 0 0 0;
  z-index: 1111;
  position: relative;
}

.headline {
  width: 100%;
  position: relative;
  z-index: 5555;
}

#landing-page .headline, #pricing .headline, #contact .headline, #firebase .headline {
  text-align: center;
}

.beta {
  display: flex;
  z-index: 4444;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.14);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.04);
  padding: 8px 16px 8px 12px;
  border-radius: 17px;
  color: #0F172A;
  text-decoration: none;
}

.beta i {
  color: #FDBA74;
  font-size: 16px;
}

header h1,
header h2,
header h3 {
  margin: 0;
}

header h1 {
  color: #0F172A;
  font-size: 60px;
  line-height: 120%;
  font-weight: 700;
  margin: 0 auto 8px auto;
  max-width: 760px;
}

header h1 span {
  color: #3B82F6;
}

header h2 {
  color: #0F172A;
  font-size: 48px;
  font-weight: bold;
  line-height: 150%;
}

header h3 {
  color: #64748B;
  font-size: 16px;
  margin: 0 auto;
  line-height: 150%;
  max-width: 560px;
}

#landing-page header h3 {
  font-size: 16px;
}

.header-ctas {
  justify-content: center;
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  margin: 48px 0 0 0;
}

.header-ctas a {
  text-decoration: none;
}

.main-cta {
  background: #3B82F6;
  background: linear-gradient(#3B82F6, #3079F5);
  border: 1px solid rgba(0, 0, 0, 0.14);
  color: white;
  background-blend-mode: soft-light, normal;
  box-shadow: 0px -1px 2px 0px rgba(0, 0, 0, 0.01) inset, 0px 1px 1px 0px rgba(255, 255, 255, 0.25) inset, 0px 1px 2px 0px rgba(0, 0, 0, 0.28);
}

.main-cta:hover {
  background-color: #2563EB;
}

.main-cta-sm {
  border-radius: 16px;
}

.no-credit {
  font-size: 12px;
  color: #64748B;
}

.firebase-logo {
  margin-bottom: 32px;
  height: 96px;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 8888;
}

.modal {
  display: none;
  width: 100%;
  height: 100%;
  z-index: 9999;
  position: fixed;
  align-items: center;
  justify-content: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.video-container {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 75%;
  border: 8px solid white;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.24);
}

.video-container .close-btn {
  background-color: white;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  position: absolute;
  top: -17px;
  right: -17px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-container .close-btn i {
  font-size: 32px;
  color: #334155;
}

.video-container video {
  width: 100%;
  height: 100;
}

#maintenance-banner {
  padding: 12px;
  background: #F97316;
  color: white;
  text-align: center;
  font-size: 12px;
}

#ai-directory {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 1024px;
  width: 100%;
  padding-bottom: 96px;
}

#ai-directory main {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.api-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.api-card {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 10px;
  padding: 16px;
  background-color: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.api-card-header {
  display: flex;
  gap: 12px;
  align-items: center;
}

.api-card-header label {
  font-size: 16px;
  font-weight: bold;
  padding: 0;
  margin: 0;
}

.api-card img {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.14);
}

.api-card-header-text {
  flex: 1; /* Ensures the text takes up available space */
  gap: 4px;
  display: flex;
  flex-direction: column;
}

.api-card-ctas {
  font-size: 11px;
  color: #64748B;
}

.api-card-ctas .btn-link {
  font-size: 12px;
  text-align: none;
  color: #3B82F6;
}

.api-card-body {
  font-size: 12px;
  padding: 12px 0;
  color: #334155;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.api-card-body-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.api-card-body-item p {
  margin: 0;
  color: #64748B;
  line-height: 150%;
}

.api-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  width: 100%;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
}

.api-list-header h3 {
  font-weight: 600;
  margin: 0;
}

.search-container {
  display: flex;
  flex: 1;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

#api-search {
  background-color: transparent;
  padding: 10px 0 10px 10px;
  border: none;
  width: 100%;
  font-size: 12px;
}

.filter-container {
  position: relative;
}

#capability-filters-button {
  height: 35px;
}

#capability-filters {
  position: absolute;
  top: 48px;
  right: 0;
  width: 280px;
  max-height: 300px;
  overflow-y: auto;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 6px;
  padding: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#capability-filters label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #F1F5F9;
  padding: 12px;
  border-radius: 4px;
  cursor: pointer;
}

.capability-filter-item input {
  margin-right: 6px;
}

@keyframes modal-video {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modal-video-inner {
  from {
    transform: translate(0, 100px);
  }
  to {
    transform: translate(0, 0);
  }
}
.modal-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000000;
  cursor: pointer;
  opacity: 1;
  animation-timing-function: ease-out;
  animation-duration: 0.3s;
  animation-name: modal-video;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.modal-video-close {
  opacity: 0;
}
.modal-video-close .modal-video-movie-wrap {
  -webkit-transform: translate(0, 100px);
  -moz-transform: translate(0, 100px);
  -ms-transform: translate(0, 100px);
  -o-transform: translate(0, 100px);
  transform: translate(0, 100px);
}

.modal-video-body {
  max-width: 960px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.modal-video-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
@media (orientation: landscape) {
  .modal-video-inner {
    padding: 10px 60px;
    box-sizing: border-box;
  }
}

.modal-video-movie-wrap {
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
  background-color: #333;
  animation-timing-function: ease-out;
  animation-duration: 0.3s;
  animation-name: modal-video-inner;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -ms-transition: -ms-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal-video-movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-video-close-btn {
  position: absolute;
  z-index: 2;
  top: -45px;
  right: 0;
  display: inline-block;
  width: 35px;
  height: 35px;
  overflow: hidden;
  border: none;
  background: transparent;
}
@media (orientation: landscape) {
  .modal-video-close-btn {
    top: 0;
    right: -45px;
  }
}
.modal-video-close-btn:before {
  transform: rotate(45deg);
}
.modal-video-close-btn:after {
  transform: rotate(-45deg);
}
.modal-video-close-btn:before, .modal-video-close-btn:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #fff;
  border-radius: 5px;
  margin-top: -6px;
}

section {
  box-sizing: border-box;
}

.how-it-works {
  display: flex;
  gap: 48px;
  justify-content: center;
  font-weight: 300;
  margin: 0 auto;
  font-size: 18px;
  color: #64748B;
  line-height: 150%;
  max-width: 1024px;
  box-sizing: border-box;
  padding: 0 16px;
}

.how-it-works div {
  flex: 1;
}

.how-it-works a {
  color: #64748B;
}

.how-it-works a:hover {
  color: #334155;
}

.how-it-works span {
  color: #0F172A;
  font-weight: bold;
}

.requests-image {
  width: 100%;
  max-width: 960px;
  padding: 0 24px;
  box-sizing: border-box;
}

.featured-testimonial {
  max-width: 840px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 16px;
}

.featured-testimonial p {
  font-size: 24px;
  font-family: "Times New Roman", Times, serif;
  font-weight: 400;
  color: #334155;
  font-style: italic;
  line-height: 150%;
}

.featured-testimonial-profile {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.featured-testimonial img {
  width: 80px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.featured-testimonial h5 {
  font-size: 18px;
  font-weight: 600;
  color: #0F172A;
  margin: 0;
}

.featured-testimonial span {
  font-size: 14px;
  color: #64748B;
}

.featured-testimonial-profile-name {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.app-wall {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 720px;
  margin: 0 16px;
}

.app-wall h2 {
  font-weight: 600;
  color: #0F172A;
  text-align: center;
  font-size: 24px;
}

.app-wall img {
  width: 100%;
  filter: grayscale(100%);
}

section.dash-preview {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1024px;
  width: 100%;
  padding: 0 16px;
}

section.dash-preview .beta {
  align-self: center;
}

.dashboard-image {
  border: 8px solid #0F172A;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}

.service-item {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 8px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background-color: white;
  border-radius: 8px;
  padding: 8px;
  font-weight: 500;
  font-size: 11px;
}

.service-item img {
  width: 24px;
  height: 24px;
  border-radius: 4px;
}

.features {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  flex-direction: column;
  gap: 48px;
  width: 100%;
  max-width: 1024px;
}

.feature-cards {
  align-items: center;
  box-sizing: border-box;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 0 16px;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 16px; /* Adjust the gap between grid items as needed */
}

.feature {
  display: flex;
  background: white;
  flex: 1;
  flex-direction: column;
  border-radius: 10px;
  box-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075), 0 0 0 1px hsla(0, 0%, 0%, 0.05), 0 0.3px 0.4px hsla(0, 0%, 0%, 0.01), 0 0.9px 1.5px hsla(0, 0%, 0%, 0.025), 0 3.5px 6px hsla(0, 0%, 0%, 0.04);
  height: 330px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.feature i {
  display: none;
  background-color: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  width: 32px;
  height: 32px;
  color: #334155;
  align-items: center;
  justify-content: center;
}

.feature-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
}

.feature h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  color: #0F172A;
}

.feature p {
  margin: 0;
  font-size: 12px;
  color: #64748B;
  line-height: 150%;
}

.feature.security {
  background-image: url(../img/security.png);
}

.feature.monitoring {
  background-image: url(../img/monitoring.png);
}

.feature.rate-limits {
  background-image: url(../img/rate-limits.png);
}

.feature.live-console {
  background-image: url(../img/live-console.png);
}

.feature.notifications {
  background-image: url(../img/notifications.png);
}

.feature.model-overrides {
  background-image: url(../img/model-overrides.png);
}

.feature.swift-library {
  background-image: url(../img/swift-library.png);
}

.feature.scale {
  background-image: url(../img/scale.png);
}

.feature.byok {
  background-image: url(../img/byok.png);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: calc(100vw - 16px);
  box-sizing: border-box;
}

.testimonials h2 {
  font-weight: bold;
  color: #0F172A;
  text-align: center;
}

.card {
  display: flex;
  box-sizing: border-box;
  border-radius: 10px;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 32%;
  line-height: 150%;
  background-color: white;
  padding: 24px;
  gap: 12px;
  box-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075), 0 0 0 1px hsla(0, 0%, 0%, 0.05), 0 0.3px 0.4px hsla(0, 0%, 0%, 0.01), 0 0.9px 1.5px hsla(0, 0%, 0%, 0.025), 0 3.5px 6px hsla(0, 0%, 0%, 0.04);
}

.testimonial-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.header-actor {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  gap: 4px;
}

.profile {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.testimonial-header h5 {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
}

.testimonial-header a {
  font-size: 12px;
  line-height: 16px;
  padding: 0;
  margin: 0;
  color: #64748B;
  text-decoration: none;
}

.testimonial-body {
  font-size: 13px;
  line-height: 150%;
  color: #334155;
}

.testimonial-cards {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  max-width: 100%;
  box-sizing: border-box;
}

.scroll-container {
  display: flex;
  animation: scroll 150s linear infinite;
  gap: 8px;
  padding: 4px 0;
  width: fit-content;
  box-sizing: border-box;
}

.scroll-content {
  display: flex;
  gap: 8px;
  box-sizing: border-box;
  flex-shrink: 0;
}

.testimonial-card {
  display: flex;
  box-sizing: border-box;
  border-radius: 10px;
  flex-direction: column;
  flex-shrink: 0;
  line-height: 150%;
  background-color: white;
  padding: 24px;
  gap: 12px;
  box-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075), 0 0 0 1px hsla(0, 0%, 0%, 0.05), 0 0.3px 0.4px hsla(0, 0%, 0%, 0.01), 0 0.9px 1.5px hsla(0, 0%, 0%, 0.025), 0 3.5px 6px hsla(0, 0%, 0%, 0.04);
  width: 360px;
}
@media (max-width: 480px) {
  .testimonial-card {
    width: 90vw;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.shortcuts {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  flex-direction: column;
  gap: 48px;
  width: 100%;
  max-width: 1024px;
  padding: 0 16px;
}

.shortcut-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 16px;
}

.shortcut-card {
  background-color: #fff;
  border-radius: 6px;
  box-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075), 0 0 0 1px hsla(0, 0%, 0%, 0.05), 0 0.3px 0.4px hsla(0, 0%, 0%, 0.01), 0 0.9px 1.5px hsla(0, 0%, 0%, 0.025), 0 3.5px 6px hsla(0, 0%, 0%, 0.04);
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.shortcut-card:hover {
  transform: scale(1.01);
}

.shortcut-card img {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
  border-radius: 12px;
}

.shortcut-card-label {
  padding: 8px 16px 16px 16px;
}

.shortcut-card-label label {
  color: #0F172A;
  font-size: 12px;
  font-weight: 500;
}

.shortcut-card-label p {
  color: #64748B;
  font-size: 12px;
  margin: 4px 0 8px 0;
}

.bottom-cta {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  width: calc(100% - 32px);
  max-width: 1024px;
  box-sizing: border-box;
  padding: 72px 0;
  margin: 0 16px;
  color: white;
  background-image: url("/assets/img/audit-bg.png");
  background-size: cover;
  text-align: center;
  gap: 24px;
  align-items: center;
  box-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075), 0 0 0 1px hsla(0, 0%, 0%, 0.05), 0 0.3px 0.4px hsla(0, 0%, 0%, 0.01), 0 0.9px 1.5px hsla(0, 0%, 0%, 0.025), 0 3.5px 6px hsla(0, 0%, 0%, 0.04);
}

.bottom-cta a {
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  flex-grow: 0;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.bottom-cta h5 {
  color: rgba(255, 255, 255, 0.75);
}

.faqs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 640px;
  width: 100%;
  padding: 0 0 96px 0;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  border-bottom: 1px solid #E2E8F0;
  color: #0F172A;
  width: 100%;
  gap: 8px;
  cursor: pointer;
  flex-direction: column;
  padding: 16px;
}

.faq:last-child {
  border-bottom: none;
}

button.accordian {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  color: #0F172A;
  border: none;
  font-weight: 500;
  font-size: 16px;
  background: none;
  padding: 0;
  outline: none;
  text-align: left;
  align-items: center;
  width: 100%;
}

.faq p {
  color: #334155;
  font-size: 14px;
  line-height: 150%;
}

.faq-list {
  width: 100%;
}

.panel {
  display: none;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}

.panel a {
  color: #334155;
}

.panel a:hover {
  color: #0F172A;
}

.faq.active .panel {
  display: block;
}

.faq .accordian i {
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}

.faq.active .accordian i {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

#firebase {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

#firebase .chart-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2000;
}

#firebase table {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;
}

#firebase table, #firebase th, #firebase td {
  border: 1px solid rgba(0, 0, 0, 0.14);
}

#firebase table tr:last-child td:last-child {
  border-bottom-right-radius: 16px;
}

#firebase table .chart-label {
  padding: 24px 48px;
  text-align: left;
  font-size: 14px;
  color: #64748B;
}

#firebase table .chart-header {
  padding: 24px 48px;
  color: #0F172A;
  font-weight: 500;
}

#firebase table .chart-icon {
  text-align: center;
}

#firebase table .chart-icon i {
  font-size: 20px;
}

#firebase table .with-aiproxy {
  color: #3B82F6;
  font-weight: bold;
}

.chart i {
  font-size: 24px;
}

#firebase table i.red {
  color: #EF4444;
}

#firebase table i.green {
  color: #22C55E;
}

.firebase-examples {
  display: flex;
}

.firebase-examples h2 {
  flex-basis: 33.33333%;
  font-weight: bold;
  color: #0F172A;
  text-align: center;
}

.integrate {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.integrate-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.integrate-step {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.integrate-step p {
  padding: 0;
  margin: 0;
}

.integrate pre {
  font-size: 12px;
  margin-top: 0;
  width: auto;
}

.integrate pre code {
  border-radius: 10px;
  line-height: 150%;
}

#privacy-policy h1, #privacy-policy h2, #privacy-policy h3, #privacy-policy h4 {
  font-weight: bold;
  color: #0F172A;
}
#privacy-policy p, #privacy-policy ul {
  font-size: 14px;
  color: #334155;
  line-height: 180%;
  margin: 24px 0 0 0;
}
#privacy-policy a {
  color: #3B82F6;
}

#contact {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex: 1;
  max-width: 720px;
  padding: 0 16px;
}

#contact .headline {
  text-align: center;
}

#contact main {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  width: 100%;
  padding: 48px 0;
  gap: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.input-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.input-container label {
  font-size: 14px;
  font-weight: 500;
  color: #334155;
}

.input-container input, .input-container textarea {
  border-radius: 3px;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.14);
  font-size: 14px;
  font-weight: normal;
  padding: 12px;
}

.input-container textarea {
  height: 100px;
}

.h-captcha {
  width: 100%;
}

.contact-footer {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

.waitlist-form input {
  padding: 0 16px;
  height: 48px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  outline: none;
}

.waitlist-form .btn {
  border-radius: 8px;
}

.docs {
  display: flex;
  flex-direction: column;
  height: 100vh;
  background: #fcfcfc;
  overflow: hidden;
}

.docs pre {
  margin-top: 16px;
  font-size: 12px;
}

.docs pre code {
  border-radius: 10px;
  line-height: 150%;
}

.doc-content img {
  width: 100%;
  background-color: #F8FAFC;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.14);
}

.doc-group video {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #F8FAFC;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.14);
}

.docs nav {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  background-color: white;
  border-bottom: 1px solid #E2E8F0;
  box-shadow: none;
}

.doc-container {
  display: flex;
  flex-direction: row;
  height: 100%;
  justify-content: space-between;
}

.docs main {
  overflow-y: scroll;
  max-width: none;
  flex-shrink: 1;
  padding-bottom: 96px;
}

aside {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  width: 236px;
  flex: 0 0 236px;
  height: calc(100vh - 64px);
  background-color: white;
  border-right: 1px solid #E2E8F0;
  box-sizing: border-box;
  gap: 4px;
  padding: 12px 12px 24px 12px;
  overflow-y: auto;
  overflow-x: hidden;
}

.sidebar-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-sizing: border-box;
}

.sidebar-label {
  padding: 8px;
  font-weight: 400;
  font-size: 11px;
  color: #64748B;
}

a.sidebar-link.open-intercom i {
  font-size: 20px;
}

a.sidebar-link.active, a.sidebar-link.active:hover {
  background-color: #0F172A;
  color: white;
}

a.sidebar-link {
  display: flex;
  text-decoration: none;
  padding: 8px;
  border-radius: 6px;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  color: #334155;
  font-size: 13px;
  font-weight: 400;
  position: relative;
  transition: all 0.2s ease-in-out;
}

a.sidebar-link:hover {
  background-color: #F1F5F9;
  color: #0F172A;
}

a.sidebar-link i {
  font-size: 12px;
  color: #64748B;
}

.doc-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 48px;
}

.col-2 {
  width: 100%;
  max-width: 560px;
}

.doc-header h1 {
  margin: 0 0 8px 0;
  font-weight: bold;
  color: #0F172A;
}

.doc-group {
  margin: 0 0 24px 0;
  border-bottom: 1px solid #E2E8F0;
  padding: 8px 0 16px 0;
}

.doc-group:last-child {
  border: none;
}

.doc-body h3 {
  font-weight: bold;
  margin: 0;
  color: #334155;
}

.doc-body h5 {
  font-weight: bold;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  color: #64748B;
  font-size: 12px;
  font-weight: 600;
}

.doc-body p {
  font-size: 14px;
  color: #334155;
  line-height: 180%;
  margin: 16px 0 16px 0;
}

.doc-body a {
  color: #3B82F6;
}
.doc-body a:hover {
  color: #2563EB;
}

.doc-body ol, .doc-body ul {
  font-size: 14px;
  color: #334155;
  line-height: 180%;
}

.doc-body .btn {
  color: #334155;
}

.doc-body .btn:hover {
  color: #0F172A;
}

.doc-cards {
  display: flex;
  gap: 16px;
  margin: 0;
}

.doc-card {
  border: 1px solid rgba(0, 0, 0, 0.14);
  box-sizing: border-box;
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  background-color: white;
  overflow: hidden;
  flex: 1;
}

.card-icon {
  background-color: #F8FAFC;
  display: flex;
  padding: 48px 0;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}

.card-icon img {
  width: 25%;
  border: none;
}

.card-icon i {
  font-size: 96px;
}

.card-content {
  padding: 16px;
}

.card-content h5 {
  font-weight: bold;
  margin: 0 0 4px 0;
  color: #0F172A;
  text-transform: none;
}

.card-content p {
  color: #64748B;
  font-size: 12px;
  margin: 0 0 16px 0;
}

.doc-shortcuts {
  background: #F8FAFC;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 6px;
  padding: 24px;
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: -fit-content;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.doc-shortcuts h3 {
  font-weight: bold;
  margin: 0;
}

.shortcut-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.shortcut-item {
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: #334155;
  line-height: 16px;
  align-items: center;
}

a.shortcut-item {
  text-decoration: none;
}

.code {
  display: inline-block;
  border-radius: 6px;
  padding: 0 4px;
  line-height: 20px;
  font-size: 13px;
  background-color: #CBD5E1;
  color: #0F172A;
}

#integration-video video {
  border-radius: 6px;
  width: 100%;
  height: auto;
}

.examples-overflow {
  position: relative;
}

.examples-overflow-menu {
  flex-direction: column;
  display: none;
  position: absolute;
  right: 16px;
  top: 42px;
  justify-content: center;
  align-items: unset;
  border: 1px solid rgba(0, 0, 0, 0.14);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  background-color: white;
  padding: 8px;
  border-radius: 7px;
  gap: 0;
}

.examples-overflow-menu a {
  padding: 12px 48px;
  margin: 0;
  height: auto;
  display: block;
  border-radius: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}

.examples-overflow-menu a:last-child {
  border: none;
  background: none;
  color: #334155;
  box-shadow: none;
}

.examples-overflow-menu a:last-child:hover {
  color: #0F172A;
}

.tabs {
  display: flex;
  border-bottom: 1px solid #E2E8F0;
  gap: 8px;
}

.tabs a {
  display: flex;
  gap: 8px;
  white-space: nowrap;
  padding: 12px;
  color: #0F172A;
  align-items: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.tabs a.active {
  color: #0F172A;
  border-bottom: 2px solid #3B82F6;
  cursor: pointer;
}

.tabs a.inactive {
  color: #334155;
  border-bottom: none;
}

.tabs a.inactive:hover {
  color: #0F172A;
}

.callout {
  padding: 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 400;
  line-height: 150%;
  margin: 16px 0 16px 0;
  color: #0F172A;
  background: #F1F6FE;
  color: #334155;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.callout img {
  width: 180px;
  border: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.callout-warning {
  color: #EF4444;
  background: #FCF2F2;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.callout .code {
  font-size: 12px;
}

.callout-warning .code {
  background: #EF4444;
  color: white;
}

.callout p {
  font-size: 13px;
  font-weight: 400;
  line-height: 150%;
  padding: 0;
}

.callout p:first-child {
  margin-top: 0;
}

.callout p:last-child {
  margin-bottom: 0;
}

#updates {
  display: flex;
  flex-direction: column;
  max-width: 720px;
  width: 100%;
  gap: 48px;
  padding-bottom: 96px;
  box-sizing: border-box;
}

#updates main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#post {
  display: flex;
  flex: 1;
  flex-direction: column;
  max-width: 720px;
  width: 100%;
  gap: 48px;
  padding-bottom: 96px;
  box-sizing: border-box;
}

#post header {
  text-align: left;
}

#post main {
  display: flex;
  flex-direction: column;
}

.post-block {
  padding: 32px 0 24px 0;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}
.post-block:first-child {
  padding-top: 0;
}
.post-block:last-child {
  border-bottom: none;
}

#post h3 {
  font-weight: bold;
  margin: 0;
  color: #334155;
}

#post h5 {
  font-weight: 500;
  margin: 8px 0 0 0;
  text-transform: uppercase;
  color: #64748B;
  font-size: 12px;
}

#post p {
  font-size: 14px;
  color: #334155;
  line-height: 180%;
  margin: 24px 0 0 0;
}

#post .media {
  margin: 24px 0 0 0;
  border-radius: 6px;
  width: 100%;
  height: auto;
  box-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075), 0 0 0 1px hsla(0, 0%, 0%, 0.05), 0 0.3px 0.4px hsla(0, 0%, 0%, 0.01), 0 0.9px 1.5px hsla(0, 0%, 0%, 0.025), 0 3.5px 6px hsla(0, 0%, 0%, 0.04);
}

#post main a {
  color: #3B82F6;
}
#post main a:hover {
  color: #2563EB;
}

#post ol, #post ul {
  font-size: 14px;
  color: #334155;
  line-height: 180%;
}

#post li {
  margin: 4px 0;
}

#post pre {
  margin-top: 16px;
  font-size: 12px;
}

#post pre code {
  border-radius: 10px;
  line-height: 150%;
}

.excerpt {
  border-radius: 10px;
  display: flex;
  background-color: white;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  box-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075), 0 0 0 1px hsla(0, 0%, 0%, 0.05), 0 0.3px 0.4px hsla(0, 0%, 0%, 0.01), 0 0.9px 1.5px hsla(0, 0%, 0%, 0.025), 0 3.5px 6px hsla(0, 0%, 0%, 0.04);
  text-decoration: none;
  transition: all 0.14s ease-in-out;
  -webkit-transition: all 0.14s ease-in-out;
}

.excerpt:hover {
  transform: scale(1.01);
}

.excerpt img {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}

.excerpt-info {
  padding: 24px;
}

.excerpt-category {
  display: inline-block;
  text-transform: capitalize;
  font-size: 11px;
  background: #F1F5F9;
  font-weight: 500;
  color: #334155;
  padding: 4px 8px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 24px;
}

.excerpt-title {
  font-size: 18px;
  font-weight: bold;
  color: #0F172A;
  padding: 0;
  margin: 12px 0 8px 0;
}

.excerpt-meta {
  font-size: 12px;
  font-weight: 400;
  color: #64748B;
  padding: 0;
  margin: 0;
}

#pricing {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex: 1;
  gap: 48px;
  max-width: 1024px;
  padding: 0 16px 96px 16px;
}

#pricing main {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  width: 100%;
  gap: 48px;
}

.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-decoration: none;
  gap: 4px;
  padding: 28px;
  background: #3B82F6;
  background: linear-gradient(#3B82F6, #3079F5);
  border: 1px solid rgba(0, 0, 0, 0.14);
  color: white;
  background-blend-mode: soft-light, normal;
  box-shadow: 0px -1px 2px 0px rgba(0, 0, 0, 0.01) inset, 0px 1px 1px 0px rgba(255, 255, 255, 0.25) inset, 0px 1px 2px 0px rgba(0, 0, 0, 0.28);
}

.free-request-limit {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}

.pricing-cta:hover {
  background-color: #2563EB;
}

.tiers-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.tiers {
  display: flex;
  gap: 8px;
  justify-content: space-between;
  width: 100%;
}

.tier {
  background-color: white;
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-radius: 8px;
  box-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075), 0 0 0 1px hsla(0, 0%, 0%, 0.05), 0 0.3px 0.4px hsla(0, 0%, 0%, 0.01), 0 0.9px 1.5px hsla(0, 0%, 0%, 0.025), 0 3.5px 6px hsla(0, 0%, 0%, 0.04);
}

.tier-plan {
  font-weight: 600;
  padding: 12px 0 24px 0;
  text-transform: uppercase;
  display: flex;
  gap: 8px;
  align-items: center;
}

.popular {
  background-color: #EAFBF9;
  color: #22C55E;
  font-size: 11px;
  text-transform: none;
  font-weight: 500;
  border-radius: 6px;
  padding: 4px 8px;
}

.sub-price {
  font-weight: 500;
  font-size: 24px;
  padding: 0;
}

.tier-price {
  padding: 0;
}

.sub-billing {
  font-size: 12px;
  padding: 0 4px;
  font-weight: 400;
  color: #64748B;
}

.tier-desc {
  padding: 8px 0;
  font-weight: 500;
}

.tier p {
  font-size: 12px;
  color: #64748B;
}

.tier ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  flex: 2;
}

.tier li {
  padding: 4px 0;
  text-align: left;
  font-size: 12px;
}

.tier li.not-included {
  opacity: 0.25;
}

.tier li i {
  padding-right: 12px;
  opacity: 0.25;
}

.tier .btn {
  width: 100%;
  margin-top: 16px;
}

.billing-toggle {
  color: #334155;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}

.billing-toggle span {
  color: #22C55E;
}

.enterprise {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  background-color: #eee;
  box-sizing: border-box;
  padding: 24px;
  border-radius: 8px;
  box-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075), 0 0 0 1px hsla(0, 0%, 0%, 0.05), 0 0.3px 0.4px hsla(0, 0%, 0%, 0.01), 0 0.9px 1.5px hsla(0, 0%, 0%, 0.025), 0 3.5px 6px hsla(0, 0%, 0%, 0.04);
}

.enterprise-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.enterprise h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.enterprise p {
  margin: 0;
  line-height: 125%;
  font-size: 12px;
  font-weight: 400;
  color: #64748B;
}

.enterprise .btn {
  white-space: nowrap;
}

#resources, #videos, #samples {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 1024px;
  width: 100%;
  box-sizing: border-box;
  padding: 0 16px 96px 16px;
}

#resources main {
  gap: 48px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.resource-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 16px; /* Adjust the gap between grid items as needed */
}

.sample-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 16px; /* Adjust the gap between grid items as needed */
}

.video-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 16px; /* Adjust the gap between grid items as needed */
}

.resource-card {
  background-color: #f9f9f9; /* Optional: Add background color to the cards */
  border-radius: 6px; /* Optional: Add border radius for rounded corners */
  box-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075), 0 0 0 1px hsla(0, 0%, 0%, 0.05), 0 0.3px 0.4px hsla(0, 0%, 0%, 0.01), 0 0.9px 1.5px hsla(0, 0%, 0%, 0.025), 0 3.5px 6px hsla(0, 0%, 0%, 0.04);
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.resource-card:hover {
  transform: scale(1.01);
}

.resource-card img {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
  border-radius: 12px;
}

.resource-card-label {
  padding: 8px 16px 16px 16px;
}

.resource-card-label label {
  color: #0F172A;
  font-size: 12px;
  font-weight: 500;
}

.resource-card-label p {
  color: #64748B;
  font-size: 12px;
  margin: 4px 0 8px 0;
}

#customers {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 1024px;
  width: 100%;
  padding-bottom: 96px;
}

#customers main {
  gap: 48px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.customer-cards {
  display: flex;
  flex-direction: column;
  gap: 20px; /* Adjust the gap between grid items as needed */
}

.customer-row {
  display: flex;
  gap: 20px;
}

.customer-card {
  background-color: #f9f9f9; /* Optional: Add background color to the cards */
  border-radius: 6px; /* Optional: Add border radius for rounded corners */
  box-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075), 0 0 0 1px hsla(0, 0%, 0%, 0.05), 0 0.3px 0.4px hsla(0, 0%, 0%, 0.01), 0 0.9px 1.5px hsla(0, 0%, 0%, 0.025), 0 3.5px 6px hsla(0, 0%, 0%, 0.04);
  overflow: hidden;
  text-decoration: none;
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-basis: 50%;
}

.customer-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.customer-header img {
  width: 60px;
  height: 60px;
}

.customer-card-image {
  width: 100%;
  border-radius: 6px;
}

.customer-header-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.customer-header-label label {
  font-size: 18px;
  font-weight: 600;
  color: #0F172A;
}

.customer-header-label span {
  font-size: 14px;
  color: #64748B;
}

.customer-card p {
  color: #334155;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.customer-card a {
  font-size: 14px;
  font-weight: 600;
  color: #3B82F6;
  text-decoration: none;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
}

#not-found {
  width: 100%;
  max-width: 1024px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  min-height: calc(100vh - 232px);
}

#not-found header {
  width: 100%;
  padding: 0 0 0 0;
}

#not-found p {
  font-size: 12px;
  color: #64748B;
}

#not-found main {
  gap: 16px;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

footer {
  width: 100%;
  font-size: 14px;
}

.footer-container {
  padding: 24px 0 48px 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  color: #6e7d9e;
}

.footer-links {
  display: flex;
  gap: 16px;
}

footer a {
  color: #6e7d9e;
  text-decoration: none;
}

footer a:hover {
  color: #0F172A;
}

@media only screen and (max-width: 1080px) {
  .how-it-works {
    gap: 24px;
    font-size: 16px;
    padding: 0 32px;
  }
}
@media only screen and (max-width: 820px) {
  .feature-cards {
    gap: 8px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  #landing-page main {
    margin: 0;
    gap: 48px;
  }
  .radar {
    width: 95%;
  }
  .beam {
    width: 100%;
    height: 100%;
  }
  #landing-page header h3 {
    font-size: 14px;
  }
  .header-ctas {
    margin: 24px 0;
  }
  .beta {
    font-size: 11px;
  }
  .section-header h2 {
    font-size: 24px;
  }
  .dash-preview {
    padding: 24px;
  }
  .shortcuts {
    padding: 32px 0;
    gap: 24px;
  }
  .shortcut-cards {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, auto);
    gap: 8px;
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
  }
  .shortcut-cards a {
    flex-direction: row;
    gap: 8px;
    align-items: center;
  }
  .shortcut-cards a .shortcut-card-label {
    padding: 0;
  }
  .shortcut-card img {
    width: 96px;
  }
  .how-it-works {
    flex-direction: column;
    width: auto;
    padding: 0 56px;
    text-align: center;
  }
  .how-it-works span {
    display: block;
    margin-bottom: 8px;
  }
  .how-it-works, .cards, .card-row {
    flex-direction: column;
  }
  .testimonials {
    gap: 24px;
    width: 100vw;
  }
  .featured-testimonial {
    padding: 0 16px;
  }
  .featured-testimonial p {
    font-size: 18px;
  }
  .features {
    padding: 32px 0;
    gap: 24px;
  }
  .features h2 {
    font-size: 24px;
  }
  .feature.security, .feature.monitoring, .feature.rate-limits, .feature.live-console, .feature.notifications, .feature.model-overrides, .feature.swift-library, .feature.scale, .feature.byok {
    background-image: none;
  }
  .feature-row {
    gap: 8px;
    flex-direction: column;
  }
  .feature {
    height: auto;
    padding: 16px;
    gap: 16px;
  }
  .feature i {
    display: flex;
  }
  .feature-details {
    gap: 4px;
    padding: 0;
  }
  .testimonial-card {
    width: 280px;
  }
  .bottom-cta {
    padding: 36px 24px;
  }
  .bottom-cta h2 {
    font-size: 20px;
  }
  .bottom-cta h5 {
    font-size: 16px;
  }
  .bottom-cta .btn-large {
    font-size: 14px;
  }
  .metrics img {
    width: 280px;
  }
  .video-container {
    width: 90%;
  }
  .faqs {
    display: flex;
    box-sizing: border-box;
    padding: 32px 16px;
    gap: 24px;
  }
  .faq {
    padding: 16px 0;
  }
  .faq-list {
    width: 100%;
  }
  .integrate {
    text-align: center;
    padding: 0 16px;
  }
  .integrate pre {
    text-align: left;
    width: 100%;
  }
}
@media only screen and (max-width: 820px) {
  #updates,
  #resources,
  #post,
  #pricing,
  #ai-directory,
  #videos,
  #samples {
    gap: 24px;
    padding: 0 0 48px 0;
  }
  #updates main,
  #resources main,
  #pricing main,
  #post main,
  #ai-directory main,
  #videos main,
  #samples main {
    padding: 0 16px;
  }
  #updates main {
    gap: 16px;
  }
  .resource-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 8px; /* Adjust the gap between grid items as needed */
  }
  .sample-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 8px; /* Adjust the gap between grid items as needed */
  }
}
@media only screen and (max-width: 768px) {
  .contact {
    width: 90%;
  }
  #pricing main {
    gap: 16px;
  }
  #contact main {
    padding: 16px;
  }
  .contact-form {
    gap: 16px;
  }
  .tiers {
    gap: 16px;
    width: auto;
    flex-direction: column;
  }
  .enterprise {
    width: auto;
  }
  #firebase .firebase-logo {
    width: 75%;
  }
  .waitlist-form form {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  #firebase .chart-wrapper {
    display: none;
  }
  .facepile {
    margin: 24px;
  }
  #overflow-more {
    display: none;
  }
  .examples-overflow-menu {
    display: flex;
    flex-direction: row;
    position: relative;
    background: none;
    border: none;
    padding: 0;
    border: none;
    box-shadow: none;
    top: auto;
    right: auto;
  }
  .examples-overflow-menu a {
    border: none;
  }
  .sidebar-label {
    display: none;
  }
  .api-list {
    display: flex;
    flex-direction: column;
  }
  .video-cards {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, auto);
    gap: 8px; /* Adjust the gap between grid items as needed */
  }
}
@media only screen and (max-width: 1080px) {
  #landing-page header,
  #pricing header,
  #firebase header,
  #videos header,
  #samples header,
  #resources header {
    max-width: 94%;
  }
  header h1 {
    font-size: 48px;
  }
  header h2 {
    font-size: 32px;
    line-height: 120%;
  }
}
@media only screen and (max-width: 820px) {
  main {
    width: 100%;
  }
  header {
    padding: 96px 16px 16px 16px;
    max-width: 100%;
    width: 100%;
  }
  #landing-page header, #pricing header, #resources header, #post header, #updates header, #firebase header, #ai-directory header, #videos header, #samples header {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
  header h1 {
    font-size: 32px;
  }
  #login-btn, #signup-btn, #github-btn {
    display: none;
  }
  .nav-container {
    justify-content: space-between;
  }
  .nav-center {
    flex-direction: column;
    display: none;
    position: absolute;
    right: 16px;
    top: 54px;
    justify-content: center;
    align-items: unset;
    border: 1px solid rgba(0, 0, 0, 0.14);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    background-color: white;
    padding: 8px;
    border-radius: 7px;
    gap: 0;
  }
  .nav-center a {
    padding: 12px 48px;
    margin: 0;
    height: auto;
    display: block;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.14);
  }
  #signup-btn-mobile {
    border: none;
    background: none;
    color: #334155;
    box-shadow: none;
  }
  #signup-btn-mobile:hover {
    color: #0F172A;
  }
  nav a.active {
    background-color: transparent;
    border-radius: 0;
  }
  #github-btn-mobile {
    display: block;
  }
  #login-btn-mobile {
    display: block;
  }
  #signup-btn-mobile {
    display: block;
  }
  #mobile-nav {
    display: flex;
  }
  .nav-item .ph-caret-down {
    display: none;
  }
  .nav-item.has-dropdown:hover .resources-dropdown {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .footer-container {
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
  }
  .footer-links {
    flex-direction: column;
  }
  .footer-links a {
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  .docs {
    overflow: visible;
    height: auto;
  }
  .docs main {
    overflow-y: none;
    padding: 16px;
  }
  .doc-container {
    flex-direction: column;
  }
  .doc-content {
    padding: 16px 0;
  }
  .tabs {
    flex-direction: row;
    width: 100%;
    flex: 0;
    flex-shrink: 1;
    overflow-x: scroll;
    justify-content: flex-start;
  }
  aside {
    flex-direction: row;
    width: 100%;
    flex: 0;
    flex-shrink: 1;
    padding: 12px;
    overflow-x: scroll;
    border-bottom: 1px solid #E2E8F0;
    justify-content: flex-start;
    overflow-y: hidden;
    overflow-x: scroll;
  }
  /* Hide scrollbar for Chrome, Safari and Opera */
  .docs main::-webkit-scrollbar {
    display: none;
  }
  /* Hide scrollbar for IE, Edge and Firefox */
  .docs main {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
  .sidebar-section {
    flex-direction: row;
    padding: 0;
    margin: 0;
    white-space: nowrap;
    gap: 0px;
    align-items: center;
  }
  a.sidebar-link {
    padding: 8px 12px;
    border-radius: 24px;
  }
  a.sidebar-link i {
    display: none;
  }
  .support-link i {
    display: none;
  }
  .doc-cards {
    flex-direction: column;
  }
  /* Hide scrollbar for Chrome, Safari and Opera */
  aside::-webkit-scrollbar {
    display: none;
  }
  /* Hide scrollbar for IE, Edge and Firefox */
  aside {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
}

/*# sourceMappingURL=main.css.map */