:root {
  --ai-black: #1e1e1e;
  --ai-surface: #f8f3f1;
  --ai-border: #e2e2e2;
  --ai-signal-fire: #ff5842;
  --ai-blue: #1342b7;
  --ai-blue-dark: #061b51;
  --ai-blue-deep: #0c2d84;
  --ai-text: #1e1e1e;
  --ai-text-soft: rgba(30, 30, 30, 0.7);
  --ai-white: #ffffff;
  --ai-bg: #f7f7f7;
  --ai-line: #d9dfea;
  --ai-shadow: 0 28px 70px rgba(8, 24, 71, 0.12);
  --ai-radius-xl: 1.5rem;
  --ai-radius-lg: 1.25rem;
  --ai-radius-md: 0.875rem;
  --ai-radius-pill: 999px;
  --ai-container: 92.5rem;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a,
input,
button,
textarea,
select {
  outline: none !important;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

@media (min-width: 1500px) and (max-width: 1599px) {
  html {
    font-size: 15px;
  }
}

@media (min-width: 1281px) and (max-width: 1499px) {
  html {
    font-size: 14px;
  }
}

@media (min-width: 981px) and (max-width: 1280px) {
  html {
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  html {
    font-size: 14px;
  }
}

@media (min-width: 421px) and (max-width: 640px) {
  html {
    font-size: 15px;
  }
}

@media (min-width: 641px) and (max-width: 980px) {
  html {
    font-size: 16px;
  }
}

body {
  margin: 0;
  color: var(--ai-text);
  background: var(--ai-white);
  font-family: "Manrope", sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-main {
  overflow: visible;
}

.container {
  padding: 0 20px;
  width: 100%;
  max-width: var(--ai-container);
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--ai-border);
  background: var(--ai-surface);
  box-shadow: 0 10.833px 18.667px rgba(0, 0, 0, 0.02);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 12px 40px;
}

.site-header-logo {
  display: block;
  width: 98px;
  height: 25px;
  flex: 0 0 98px;
}

.site-header-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-header-nav {
  display: flex;
  align-items: center;
  gap: 21.667px;
}

.site-header-nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.site-header-nav-link {
  display: block;
  color: var(--ai-black);
  white-space: nowrap;
}

.site-header-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 160px;
  padding: 12px;
  border: 1px solid var(--ai-border);
  border-radius: 4px;
  background: var(--ai-surface);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: 0.3s;
}

.site-header-nav-item:hover .site-header-submenu,
.site-header-nav-item:focus-within .site-header-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.site-header-submenu-link {
  display: block;
  padding: 6px 0;
  color: var(--ai-black);
  white-space: nowrap;
}

.site-header-actions {
  display: flex;
  align-items: center;
  gap: 8.333px;
}

.site-header-action-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.site-header-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  color: var(--ai-black);
}

.site-header-toggle svg {
  width: 24px;
  height: 24px;
}

.site-header-toggle-close {
  display: none;
}

.site-header-mobile-panel {
  display: none;
}

.text-content {
  padding-top: 170px;
}

.text-content > *:not(section) {
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.text-content > * + * {
  margin-top: 20px;
}

.site-footer {
  position: relative;
  min-height: 491px;
  overflow: hidden;
  background: #160400;
  color: var(--central-white);
}

.site-footer-bg-logo {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 1261px;
  max-width: 88vw;
  height: 261px;
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
  opacity: 0.08;
  pointer-events: none;
}

.site-footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 406px) minmax(0, 1fr);
  gap: 175px;
  min-height: 491px;
  padding: 40px;
}

.site-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer-logo {
  display: block;
  width: 105px;
  height: 25px;
}

.site-footer-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer-text {
  width: 406px;
  max-width: 100%;
  margin-top: 16px;
  color: var(--central-white);
}

.site-footer-nav {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.site-footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.site-footer-column-toggle,
.site-footer-column-title {
  color: var(--central-white);
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.14px;
}

.site-footer-column-toggle {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.site-footer-column-icon {
  display: none;
}

.site-footer-column-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.site-footer-link {
  color: var(--shade-brand-black-100);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.14px;
  white-space: nowrap;
}

.site-footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-footer-social {
  display: block;
  width: 24px;
  height: 24px;
  color: var(--central-white);
}

.site-footer-social-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer-bottom {
  position: absolute;
  right: 40px;
  bottom: 32px;
  left: 40px;
}

.site-footer-copyright {
  margin: 0;
  color: var(--shade-brand-black-200);
  font-size: 11px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.11px;
  white-space: nowrap;
}
