:root {
  --theme-color-main: #08c8f0;
  --theme-color-accent: #d665ff;
  --color-bg: #0a101d;
  --color-text: #ffffff;
  --color-text-muted: #fafbfc;
  --color-testimonial-stars: #fff64f;
  --color-highlight-underline: #1b3d8185;
  --color-card-bg: rgba(255, 255, 255, 0.04);
  --color-card-border: rgba(255, 255, 255, 0.08);
  --color-bg-alt: #0e1929;
}

body.light-mode {
  --theme-color-main: #004aad;
  --theme-color-accent: #b700f9;
  --color-bg: #f5f5f5;
  --color-text: #0d1117;
  --color-text-muted: #2a2d33;
  --color-testimonial-stars: #f59e0b;
  --color-highlight-underline: #98d0f899;
  --color-card-bg: #ffffff;
  --color-card-border: rgba(0, 0, 0, 0.1);
  --color-bg-alt: #e8ecf4;
}

body {
  transition: background-color 0.35s ease, color 0.35s ease;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter_24pt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter_24pt-Bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter_24pt-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("/fonts/IBMPlexSans-Light.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("/fonts/IBMPlexSans-Regular.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("/fonts/IBMPlexSans-Bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
body, html {
  margin: 0;
  padding: 0;
  background-color: var(--color-bg);
  overflow-x: hidden;
  min-height: 100vh;
}
body p, html p {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 500;
}

main {
  position: relative;
  max-width: 1920px;
  margin: auto;
  overflow: hidden;
}

.skip {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1111111;
}

.navbar-nav {
  display: flex;
  padding: 0 8rem;
  align-items: center;
  height: 130px;
  color: var(--color-text);
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 500;
  gap: 1.5rem;
  transition: background-color 0.35s ease, color 0.35s ease;
}
.navbar-nav img#nav-logo {
  max-width: 230px;
  transition: opacity 0.2s ease;
  margin-right: auto;
}
@media screen and (max-width: 1110px) {
  .navbar-nav img#nav-logo {
    max-width: 180px;
  }
}

.nav-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 0;
  list-style: none;
}
.nav-items li {
  font-size: 1.1rem;
  font-weight: 600;
}
.nav-items li a {
  text-decoration: none;
  color: inherit;
}
.nav-items li:hover {
  cursor: pointer;
  color: var(--theme-color-main);
}

.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 50px;
  height: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  transition: background-color 0.2s ease, transform 0.2s;
}
.theme-toggle:hover {
  transform: scale(1.1);
  background-color: rgba(165, 165, 165, 0.08);
}
@media screen and (max-width: 1110px) {
  .theme-toggle:hover {
    background-color: transparent !important;
  }
}
.theme-toggle:focus-visible {
  outline: 2px solid var(--theme-color-main);
  outline-offset: 2px;
}
@media screen and (max-width: 1110px) {
  .theme-toggle {
    width: 40px;
    height: 40px;
  }
}

.theme-toggle__icon {
  width: 33px;
  height: 33px;
  position: absolute;
  top: 50%;
  left: 50%;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease, transform 0.4s ease;
}
@media screen and (max-width: 1110px) {
  .theme-toggle__icon {
    width: 30px;
    height: 30px;
  }
}

.theme-toggle__sun {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0deg) scale(1);
}

.theme-toggle__moon {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scale(0.5);
  filter: brightness(0);
}

body.light-mode .theme-toggle__sun {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-90deg) scale(0.5);
}
body.light-mode .theme-toggle__moon {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0deg) scale(1);
}
body.light-mode .theme-toggle:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background-color: rgba(128, 128, 128, 0.13);
  border: 1px solid rgba(128, 128, 128, 0.2);
  cursor: pointer;
  padding: 8px;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  flex-shrink: 0;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.hamburger:hover {
  background-color: rgba(128, 128, 128, 0.24);
  border-color: rgba(128, 128, 128, 0.35);
}
.hamburger:focus-visible {
  outline: 2px solid var(--theme-color-main);
  outline-offset: 2px;
}

.hamburger__line {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

@media screen and (max-width: 1110px) {
  .navbar-nav {
    padding: 1rem 1.25rem 0;
    height: 70px;
    position: relative;
    z-index: 1000;
  }
  .navbar-nav.nav-open .nav-items {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s;
    pointer-events: auto;
  }
  .navbar-nav.nav-open .hamburger__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .navbar-nav.nav-open .hamburger__line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .navbar-nav.nav-open .hamburger__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .hamburger {
    display: flex;
  }
  .nav-items {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0 1rem;
    margin: 0;
    background-color: var(--color-bg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(128, 128, 128, 0.15);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
    pointer-events: none;
  }
  .nav-items li {
    padding: 0;
    border-bottom: 1px solid rgba(128, 128, 128, 0.1);
  }
  .nav-items li a {
    display: block;
    padding: 0.9rem 1.75rem;
    text-decoration: none;
    color: inherit;
  }
  .nav-items li:last-child {
    border-bottom: none;
  }
}
.footer {
  position: relative;
  background-color: #060911;
  color: #ffffff;
  padding: 4rem 0 0;
  font-family: "IBM Plex Sans", sans-serif;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--theme-color-main), var(--theme-color-accent));
}

body.light-mode .footer {
  background-color: #dde1e8;
  color: #0d1117;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem 3.5rem;
}
@media (max-width: 1024px) {
  .footer-container {
    flex-direction: column;
    align-items: stretch;
    gap: 2.5rem;
    padding: 0 2rem 3rem;
  }
}
@media (max-width: 480px) {
  .footer-container {
    padding: 0 1.25rem 2.5rem;
    gap: 2rem;
  }
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-column--brand {
  max-width: 270px;
}
@media (max-width: 1024px) {
  .footer-column--brand {
    max-width: 100%;
  }
}
.footer-column--brand p {
  font-size: 1rem;
  color: #8a95a8;
  line-height: 1.75;
  margin: 0;
}

body.light-mode .footer-column--brand p {
  color: #5a6274;
}

.footer-logo {
  width: 200px;
  height: auto;
}
.footer-logo--light {
  display: none;
}
@media (max-width: 1024px) {
  .footer-logo {
    width: 170px;
  }
}

body.light-mode .footer-logo--dark {
  display: none;
}
body.light-mode .footer-logo--light {
  display: block;
}

.footer-cta {
  align-self: flex-start;
  margin-top: 0.25rem;
}

.footer-column__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: left;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

body.light-mode .footer-column__title {
  color: #0d1117;
}

.quick-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: #8a95a8;
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-nav-link:hover {
  color: var(--theme-color-main);
}

body.light-mode .footer-nav-link {
  color: #5a6274;
}

body.light-mode .footer-nav-link:hover {
  color: var(--theme-color-main);
}

.contact-group {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.contact-group img {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.5;
}
.contact-group a {
  font-size: 1rem;
  font-weight: 600;
  color: #8a95a8;
  text-decoration: none;
  transition: color 0.15s ease;
}
.contact-group a:hover {
  color: var(--theme-color-main);
}

body.light-mode .contact-group img {
  filter: brightness(0);
  opacity: 0.45;
}
body.light-mode .contact-group a {
  color: #5a6274;
}
body.light-mode .contact-group a:hover {
  color: var(--theme-color-main);
}

.socials {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.4rem;
}
.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.socials a:hover {
  background-color: var(--theme-color-main);
  border-color: var(--theme-color-main);
  transform: translateY(-3px);
}
.socials a:hover img {
  filter: brightness(0) invert(0);
}
.socials img {
  width: 25px;
  height: 25px;
  filter: brightness(0) invert(1);
}

body.light-mode .socials a {
  background-color: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.1);
}
body.light-mode .socials a:hover {
  background-color: var(--theme-color-main);
  border-color: var(--theme-color-main);
}
body.light-mode .socials a:hover img {
  filter: brightness(0) invert(1);
}
body.light-mode .socials img {
  filter: brightness(0);
}

.subfooter {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1rem;
  color: #444c5e;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2.5rem;
}
@media (max-width: 480px) {
  .subfooter {
    padding: 1rem 1.25rem;
  }
}

body.light-mode .subfooter {
  color: #8a95a8;
  border-top-color: rgba(0, 0, 0, 0.08);
}

.float {
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-13px);
  }
}

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