/* @import url('./variables.css');
@import url('./reset.css');
@import url('./global.css');
@import url('./components/layout.css');
@import url('./components/buttons.css');
@import url('./sections/hero.css');
@import url('./sections/intro.css');
@import url('./sections/animations.css');
@import url('./sections/footer.css'); */
:root {
  --ab-color-dark: #212529;
  --ab-color-dark-2: #1d2329;
  --ab-color-light: #f3f3f3;
  --ab-color-white: #ffffff;
  --ab-color-text-muted: rgba(33, 37, 41, 0.72);
  --ab-color-text-soft: #FCFDFD;
  --ab-font: 'Inter', sans-serif;
  --ab-container: 90rem;
  --ab-x: 1.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body.ab-body {
  font-family: var(--ab-font);
  background: var(--ab-color-white);
  color: var(--ab-color-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.ab-body.is-loading {
  overflow: hidden;
}

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

p,
h1,
h2 {
  margin: 0;
}

.ab-container {
  width: 100%;
  max-width: calc(var(--ab-container) + (var(--ab-x) * 2));
  margin-inline: auto;
  padding-inline: var(--ab-x);
}

.ab-home {
  min-height: 100vh;
}

.ab-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.04), transparent 35%),
    linear-gradient(180deg, #1c2228 0%, #212529 100%);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.ab-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ab-loader__spinner {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  border: 0.22rem solid rgba(255,255,255,0.14);
  border-top-color: #fff;
  border-right-color: rgba(255,255,255,0.6);
  animation: abSpin 0.8s linear infinite;
}

.ab-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
  margin-bottom: 128px;
  color: #fff;
}

.ab-logo__mark {
  position: relative;
  width: 27.6001033782959px;
  height: 69px;
  display: inline-block;
}

/* .ab-logo__mark::before,
.ab-logo__mark::after {
  content: '';
  position: absolute;
  top: 0;
  width: 0.1875rem;
  height: 100%;
  background: currentColor;
  border-radius: 999rem;
}

.ab-logo__mark::before {
  left: 0;
}

.ab-logo__mark::after {
  right: 0;
} */

.ab-logo__text {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.ab-hero {
  min-height: 39.75rem;
  background: linear-gradient(90deg, #1f252b 0%, #212529 52%, #1f252b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 180px 0 180px;
  text-align: center;
}

.ab-hero__inner {
  max-width: 80rem;
}

.ab-hero__title {
  margin-inline: auto;
  color: #fff;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.02em;
  text-align: center;
}

.ab-hero__desc {
  margin: 1.125rem auto 0;
  color: var(--ab-color-text-soft);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.ab-hero__soon {
  margin-top: 128px;
color: var(--ab-color-text-soft);   
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  text-align: center;
}

.ab-intro {
  background: #f3f3f3;
  padding: 7rem 0 5.75rem;
  text-align: center;
}

.ab-intro__inner {
  max-width: 80rem;
}

.ab-intro__title {
  /* max-width: 48rem; */
  margin-inline: auto;
  color: var(--ab-color-dark);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  text-align: center;
}

.ab-intro__desc {
  /* max-width: 39rem; */
  margin: 2rem auto 0;
  color: var(--ab-color-text-muted);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.ab-footer {
  background: var(--ab-color-dark);
  padding: 1rem 0;
}

.ab-footer__text {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.ab-reveal {
  opacity: 0;
}

body.ab-ready .ab-reveal--up {
  animation: abRevealUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

body.ab-ready .ab-reveal--fade {
  animation: abRevealFade 1s ease forwards;
}

body.ab-ready .ab-delay-1 {
  animation-delay: 0.18s;
}

body.ab-ready .ab-delay-2 {
  animation-delay: 0.32s;
}

body.ab-ready .ab-delay-3 {
  animation-delay: 0.48s;
}

@keyframes abSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes abRevealUp {
  0% {
    opacity: 0;
    transform: translateY(2rem);
    filter: blur(0.3rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes abRevealFade {
  0% {
    opacity: 0;
    transform: scale(0.985);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1199px) {
  .ab-hero__title {
    font-size: 3.75rem;
  }

  .ab-intro__title {
    font-size: 3rem;
  }
}

@media (max-width: 991px) {
  .ab-logo {
    margin-bottom: 3rem;
  }

  .ab-logo__text {
    font-size: 1.75rem;
  }

  .ab-hero {
    min-height: auto;
    padding: 5rem 0;
  }

  .ab-hero__title {
    font-size: 3rem;
  }

  .ab-hero__desc,
  .ab-hero__soon {
    font-size: 1.25rem;
  }

  .ab-intro {
    padding: 5rem 0 4.5rem;
  }

  .ab-intro__title {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  :root {
    --ab-x: 1rem;
  }

  .ab-logo {
    margin-bottom: 2.5rem;
  }

  .ab-logo__text {
    font-size: 2rem;
  }

  .ab-logo__mark {
    width: 0.75rem;
    height: 1.5rem;
  }

  .ab-hero {
    padding: 4rem 0 4.5rem;
  }

  .ab-hero__title {
    font-size: 2.5rem;
  }

  .ab-hero__desc {
    font-size: 1rem;
    margin-top: 1rem;
  }

  .ab-hero__soon {
    margin-top: 2.5rem;
    font-size: 1.125rem;
  }

  .ab-intro {
    padding: 4rem 0;
  }

  .ab-intro__title {
    font-size: 2rem;
  }

  .ab-intro__desc {
    margin-top: 1.25rem;
    font-size: 0.9375rem;
  }

  .ab-footer__text {
    font-size: 0.9375rem;
  }
}
.ab-logo__mark svg{
width:28px; height:69px;
}
@media (max-width: 430px) {
  .ab-hero__title {
    font-size:1.85rem;
  }

  .ab-intro__title {
    font-size: 1.55rem;
  }
   .ab-logo__mark {
   width: 22px;
        height: 44px;
  }
  .ab-logo__mark svg{
    width: 22px;
        height: 44px;
  }
  .ab-logo {
    gap: 13px;
}
.ab-hero__desc {
    font-size: 14px;
}
.ab-intro__desc {
   font-size: 14px;
}
.ab-home {
    min-height: fit-content;
}
}
@media (max-width: 400px) {
.ab-loader__logo-text {
    font-size: 1rem  !important;
}
}



.ab-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.ab-loader__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  animation: abFadeIn 1s ease forwards;
  opacity: 0;
}

.ab-loader__logo-mark {
  position: relative;
  width: 0.75rem;
  height: 1.5rem;
}

/* .ab-loader__logo-mark::before,
.ab-loader__logo-mark::after {
  content: '';
  position: absolute;
  top: 0;
  width: 0.18rem;
  height: 100%;
  background: #fff;
  border-radius: 999rem;
}

.ab-loader__logo-mark::before {
  left: 0;
}

.ab-loader__logo-mark::after {
  right: 0;
} */

.ab-loader__logo-text {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

@keyframes abFadeIn {
  to {
    opacity: 1;
  }
}
/* Scrollbar */

::-webkit-scrollbar {
  width: 0.625rem;
}

::-webkit-scrollbar-track {
  background: #f3f3f3;
}

::-webkit-scrollbar-thumb {
  background: #212529;
  border-radius: 999rem;
}

::-webkit-scrollbar-thumb:hover {
  background: #1b1f23;
}

/* Firefox */

html {
  scrollbar-color: #212529 #f3f3f3;
  scrollbar-width: thin;
}