@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght=0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: white;
  background-color: #171717;
  overflow-x: hidden;
}

.page {
  width: 100%;
  overflow: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: #2B2B2B;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
header a {
  text-decoration: none;
  color: white;
}
header a .logo {
  display: flex;
  align-items: center;
}
header a .logo img {
  width: 35px;
  height: 35px;
  margin-right: 12px;
}
header a .logo span {
  font-size: 22px;
  letter-spacing: -0.5px;
}
header a .logo span b {
  font-weight: 700;
}
header .desktop-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
}
header .desktop-nav ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.25s ease;
}
header .desktop-nav ul li a:hover {
  color: white;
}
header .login-btn {
  border: 1px solid white;
  background: transparent;
  color: white;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
header .login-btn:hover {
  background-color: white;
  color: #171717;
  transform: translateY(-1px);
}
header .burger-icon {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
}
header .burger-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: white;
  border-radius: 2px;
}
header dialog {
  display: none;
  width: 100%;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  background-color: #171717;
  border: none;
  padding: 20px 30px;
  position: fixed;
  top: 0;
  left: 0;
  margin: 0;
  flex-direction: column;
  gap: 40px;
  color: white;
  box-sizing: border-box;
}
header dialog[open] {
  display: flex;
  animation: slideInMenu 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
header dialog .dialog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 50px;
}
header dialog .dialog-header .logo {
  display: flex;
  align-items: center;
}
header dialog .dialog-header .logo img {
  width: 35px;
  height: 35px;
  margin-right: 12px;
}
header dialog .dialog-header .logo span {
  font-size: 22px;
  letter-spacing: -0.5px;
}
header dialog .dialog-header .logo span b {
  font-weight: 700;
}
header dialog .dialog-header .close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 38px;
  cursor: pointer;
  line-height: 1;
}
header dialog nav {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
header dialog nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
header dialog nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 24px;
  font-weight: 600;
}
header dialog nav .login-btn-mobile {
  width: 100%;
  border: 1px solid white;
  background: white;
  color: #171717;
  padding: 14px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

@keyframes slideInMenu {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 160px 50px 40px 50px;
}
.hero .hero-text {
  max-width: 850px;
}
.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}
.hero p {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.stats-block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  background-color: #2B2B2B;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}
.stats-block .stat {
  text-align: center;
}
.stats-block .stat h3 {
  font-size: 42px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
  letter-spacing: -1px;
}
.stats-block .stat p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

.story {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 50px;
}
.story .story-text {
  max-width: 850px;
}
.story .story-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.story .story-text p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}
.story .story-text p:last-child {
  margin-bottom: 0;
}

footer {
  background-color: #171717;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: white;
  padding: 80px 50px 40px 50px;
  font-size: 15px;
}
footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 64px;
}
footer .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
footer .logo img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .logo span {
  font-size: 24px;
  letter-spacing: -0.5px;
}
footer .logo span b {
  font-weight: 700;
}
footer .links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  flex-grow: 1;
  max-width: 850px;
}
footer .links .column h4 {
  color: white;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
}
footer .links .column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer .links .column ul li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}
footer .links .column ul li a:hover {
  color: white;
  transform: translateY(-2px);
}
footer .links p {
  color: rgba(255, 255, 255, 0.2);
  font-size: 14px;
  margin-top: 20px;
  grid-column: 1/-1;
}

@media (max-width: 1024px) {
  footer .footer-content {
    flex-direction: column;
    gap: 48px;
  }
  footer .links {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
}
@media (max-width: 768px) {
  header {
    padding: 0 24px;
  }
  header .desktop-nav,
  header .login-btn {
    display: none;
  }
  header .burger-icon {
    display: flex;
  }
  .hero {
    padding: 120px 24px 40px 24px;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero p {
    font-size: 18px;
  }
  .stats-block,
  .story {
    padding: 30px 24px;
  }
  .stats-block {
    padding: 30px 20px;
  }
  .cta-section .cta-content {
    padding: 32px 24px;
  }
  .cta-section .cta-content h2 {
    font-size: 26px;
  }
  footer {
    padding: 40px 24px;
  }
  footer .links {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  footer .links .column h4 {
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
  }
}/*# sourceMappingURL=about-styles.css.map */