@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

:root {
  --borderColor: rgba(118, 118, 118, 0.5);
  --primaryColor: #0a0e1a;
  --secondaryColor: #00d4aa;
  --accentColor: #0066ff;
  --cardBgColor: #111827;
  --textColor: white;
  --gradientPrimary: linear-gradient(135deg, #00d4aa 0%, #0066ff 100%);
  --gradientHover: linear-gradient(135deg, #00b894 0%, #0052cc 100%);
  --gradientBg: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 50%, #0f1419 100%); }

html {
  background: var(--primaryColor); }

body {
  background: var(--gradientBg);
  min-height: 100vh;
  font-size: 15px;
  letter-spacing: 0.5px;
  line-height: 1.4;
  color: var(--textColor); }

/* ----------------------- Header ----------------------- */
header {
  background-color: var(--primaryColor);
  border-bottom: 1px solid var(--borderColor);
  position: sticky;
  top: 0;
  z-index: 1000; }
  header .header-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    height: 81.5px; }
  header nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px; }
    header nav a {
      color: var(--textColor);
      text-decoration: none; }
      header nav a.active {
        color: var(--secondaryColor); }

.logo {
  color: white;
  text-decoration: none;
  font-size: 21px; }

.logo-and-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px; }

.menu-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 1000; }

.menu-toggle {
  display: none; }

/* ----------------------- Hero ----------------------- */
.hero {
  height: calc(100svh - 81.5px);
  background-position: center;
  background-size: cover;
  opacity: 0;
  animation: 2s fadeIn forwards; }
  .hero .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.808); }
    .hero .hero-content h1 {
      max-width: 800px;
      width: 90%;
      margin: 0 auto; }
    .hero .hero-content .hero-subtitle {
      max-width: 700px;
      width: 90%;
      margin: 20px auto 30px auto;
      font-size: 18px;
      text-align: center;
      opacity: 0.9;
      line-height: 1.5; }
    .hero .hero-content .hero-benefits {
      display: flex;
      flex-direction: row;
      justify-content: center;
      gap: 30px;
      margin: 30px auto;
      flex-wrap: wrap; }
    .hero .hero-content .benefit-item {
      font-size: 16px;
      color: var(--secondaryColor);
      font-weight: 500;
      opacity: 1; }
    .hero .hero-content .hero-cta {
      margin-top: 40px;
      padding: 15px 30px;
      font-size: 16px;
      font-weight: 600; }
  .hero.banner {
    height: 400px; }
  .hero.bg-hero {
    background-image: url("../assets/images/nana-dua-1-Sfd9QSPi4-unsplash.jpg"); }
  .hero.bg-about {
    background-image: url("../assets/images/nana-dua-aVeKubCF-48-unsplash.jpg"); }
  .hero.bg-tos {
    background-image: url("../assets/images/joseph-greve-D_1-g2eLho8-unsplash.jpg"); }
  .hero.bg-pp {
    background-image: url("../assets/images/dimitris-chapsoulas-EuRszFvB6kY-unsplash.jpg"); }

/* ----------------------- Code Snippets ----------------------- */
pre {
  background: rgba(17, 24, 39, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--borderColor);
  border-radius: 8px;
  padding: 20px;
  margin: 15px 0;
  overflow-x: auto;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 14px;
  line-height: 1.5; }
  pre code {
    background: none;
    border: none;
    padding: 0;
    color: var(--textColor); }

code {
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid var(--borderColor);
  border-radius: 4px;
  padding: 2px 6px;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 13px;
  color: var(--secondaryColor); }

/* ----------------------- Typography ----------------------- */
h1 {
  font-size: 60px;
  color: var(--textColor);
  text-align: center;
  font-weight: bold;
  line-height: 1.3;
  opacity: 0;
  animation: 1s fadeIn forwards;
  animation-delay: 0.1s; }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
h3 {
  font-size: 25px; }

h2 {
  color: var(--textColor);
  font-size: 32px;
  line-height: 1; }

p {
  opacity: 0.8;
  font-weight: 400; }

/* ----------------------- Buttons ----------------------- */
.cta-btn {
  display: inline-block;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  text-decoration: none;
  background: var(--gradientPrimary);
  color: white;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
  position: relative;
  overflow: hidden; }
  .cta-btn:hover {
    background: var(--gradientHover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.4); }
  .cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s; }
  .cta-btn:hover::before {
    left: 100%; }
  .cta-btn.centered {
    display: table;
    margin: 40px auto; }
  .cta-btn.light {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid var(--secondaryColor);
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.2); }
    .cta-btn.light:hover {
      background: var(--secondaryColor);
      color: #040606;
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0, 212, 170, 0.4); }
  .cta-btn.secondary {
    background: transparent;
    color: var(--secondaryColor);
    border: 2px solid var(--secondaryColor);
    box-shadow: none; }
    .cta-btn.secondary:hover {
      background: var(--secondaryColor);
      color: #040606;
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3); }

/* ----------------------- Containers ----------------------- */
.container-full {
  padding: 40px 0;
  border-top: 1px solid var(--borderColor); }
  .container-full.bg-dark {
    background-color: var(--primaryColor); }
  .container-full.bg-cta {
    background: linear-gradient(rgba(0, 0, 0, 0.808), rgba(0, 0, 0, 0.808), rgba(0, 0, 0, 0.808)), url(../assets/images/thomas-foster-vWgoeEYdtIY-unsplash.jpg);
    background-position: center;
    background-size: cover; }

section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px; }

.section-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--textColor);
  text-align: center;
  margin-bottom: 60px; }
  .section-top.start {
    align-items: start;
    text-align: start;
    margin-bottom: 20px; }
  .section-top h2 {
    color: var(--textColor);
    line-height: 1; }
  .section-top p {
    max-width: 700px;
    margin: 0 auto; }

hr {
  width: 100px;
  background: var(--gradientPrimary);
  border: none;
  height: 3px;
  border-radius: 2px; }

/* ----------------------- Showcase ----------------------- */
.showcase {
  display: flex;
  flex-direction: column;
  margin-top: 120px;
  gap: 60px; }
  .showcase .showcase-text {
    max-width: 800px; }
  .showcase img {
    width: 100%;
    border-radius: 10px;
    aspect-ratio: 16 / 8;
    object-position: center;
    object-fit: cover;
    border: 1px solid var(--borderColor); }
  .showcase h3 {
    margin-bottom: 10px; }
    .showcase h3 span {
      color: var(--secondaryColor);
      font-size: 40px; }

/* ----------------------- Ai-infrastructure ----------------------- */
.ai-infrastructure {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; }
  .ai-infrastructure .ai-infrastructure-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(10px);
    padding: 20px;
    padding-bottom: 30px;
    border: 1px solid var(--borderColor);
    border-radius: 8px;
    text-align: start; }
    .ai-infrastructure .ai-infrastructure-item h3 {
      /* font-weight: 400; */
      font-size: 20px; }
    .ai-infrastructure .ai-infrastructure-item p {
      font-size: 14px; }
    .ai-infrastructure .ai-infrastructure-item img {
      width: 40px;
      height: 40px;
      filter: brightness(0) saturate(100%) invert(77%) sepia(77%) saturate(2613%) hue-rotate(129deg) brightness(97%) contrast(101%); }

/* ----------------------- Register call to action ----------------------- */
.register-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 20px;
  min-height: 400px; }
  .register-cta p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto; }

/* ----------------------- Pricing home ----------------------- */
.pricing-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px; }
  .pricing-home .pricing-card {
    padding: 20px;
    border: 1px solid var(--borderColor);
    border-radius: 8px;
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(10px); }
  .pricing-home h3 {
    font-size: 20px; }
  .pricing-home .pricing-cost {
    font-size: 30px;
    font-weight: bold;
    margin: 10px 0;
    background: var(--gradientPrimary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 1; }
    .pricing-home .pricing-cost span {
      font-size: 14px;
      color: var(--secondaryColor);
      -webkit-text-fill-color: var(--secondaryColor); }
  .pricing-home .pricing-text {
    margin-bottom: 20px;
    font-size: 14px; }

/* ----------------------- Pricing page cards ----------------------- */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; }
  .pricing-cards .pricing-card {
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(10px);
    padding: 24px;
    border: 1px solid var(--borderColor);
    border-radius: 12px;
    gap: 0px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden; }
    .pricing-cards .pricing-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--gradientPrimary);
      opacity: 0;
      transition: opacity 0.3s ease; }
    .pricing-cards .pricing-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0, 212, 170, 0.15);
      border-color: rgba(0, 212, 170, 0.4); }
      .pricing-cards .pricing-card:hover::before {
        opacity: 1; }
    .pricing-cards .pricing-card img {
      opacity: 0.7;
      margin-bottom: 10px; }
    .pricing-cards .pricing-card .pricing-name {
      font-size: 22px;
      margin-bottom: 20px;
      font-weight: bold;
      background: var(--gradientPrimary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      min-height: 28px; }
    .pricing-cards .pricing-card .pricing-info {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      padding: 8px 0;
      border-bottom: 1px solid rgba(118, 118, 118, 0.2);
      margin-bottom: 4px; }
      .pricing-cards .pricing-card .pricing-info:last-of-type {
        border-bottom: none;
        margin-bottom: 0; }
      .pricing-cards .pricing-card .pricing-info p {
        font-weight: 600;
        color: var(--textColor); }
      .pricing-cards .pricing-card .pricing-info .pricing-info-item {
        opacity: 0.7;
        font-weight: 400;
        color: var(--secondaryColor);
        font-size: 14px; }
    .pricing-cards .pricing-card .pricing-cost {
      width: 100%;
      text-align: center;
      opacity: 1;
      font-size: 24px;
      margin-top: 20px;
      padding: 16px;
      background: rgba(0, 212, 170, 0.1);
      border: 2px solid rgba(0, 212, 170, 0.3);
      border-radius: 8px;
      position: relative;
      overflow: hidden; }
      .pricing-cards .pricing-card .pricing-cost::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--gradientPrimary);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: -1; }
      .pricing-cards .pricing-card .pricing-cost p {
        font-weight: bold;
        color: var(--secondaryColor);
        margin: 0;
        position: relative;
        z-index: 1; }
      .pricing-cards .pricing-card .pricing-cost span {
        font-size: 16px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.9); }

/* ----------------------- Call to action bottom ----------------------- */
.cta-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px; }
  .cta-bottom .cta-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: start;
    align-items: start; }
  .cta-bottom img {
    width: 100%;
    border: 1px solid var(--borderColor);
    border-radius: 10px; }

/* ----------------------- About ----------------------- */
.about-us {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 40px;
  align-items: center; }
  .about-us img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .about-us .about-us-text {
    display: flex;
    flex-direction: column;
    gap: 20px; }

/* ----------------------- Footer ----------------------- */
footer {
  border-top: 1px solid var(--borderColor); }
  footer .footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 60px;
    padding-bottom: 60px; }
    footer .footer-content .footer-content-item {
      display: flex;
      flex-direction: column;
      gap: 6px; }
      footer .footer-content .footer-content-item h4 {
        background: var(--gradientPrimary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 10px; }
      footer .footer-content .footer-content-item a {
        color: var(--textColor);
        text-decoration: none;
        opacity: 0.8;
        transition: 0.3s; }
        footer .footer-content .footer-content-item a:hover {
          opacity: 1; }
    footer .footer-content .footer-logo {
      max-width: 60px;
      width: 100%;
      margin-bottom: 20px; }
    footer .footer-content .footer-text {
      max-width: 500px; }
  footer .languages {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 40px;
    color: var(--textColor); }
    footer .languages a {
      display: flex;
      align-items: center;
      gap: 7px;
      text-decoration: none;
      opacity: 0.7;
      color: inherit;
      padding: 5px 0;
      border-bottom: 2px solid transparent;
      transition: 0.3s; }
      footer .languages a.active, footer .languages a:hover {
        opacity: 1;
        border-bottom: 2px solid var(--secondaryColor); }
  footer .copyright {
    text-align: center;
    font-size: 14px;
    opacity: 1;
    padding-bottom: 20px; }

/* ----------------------- Media Queries ----------------------- */
@media only screen and (max-width: 1200px) {
  h1 {
    font-size: 50px; }

  .ai-infrastructure {
    grid-template-columns: 1fr 1fr; } }
@media only screen and (max-width: 992px) {
  h1 {
    font-size: 45px; }

  .hero {
    height: calc(100svh - 51.2px); }
    .hero.banner {
      height: 300px; }

  header .header-content {
    padding: 10px 20px;
    height: auto; }
  header nav {
    position: fixed;
    opacity: 0;
    pointer-events: none;
    flex-direction: column;
    background-color: black;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 15px;
    justify-content: center;
    gap: 20px;
    transition: 0.3s; }

  .menu-icon {
    display: block; }

  .menu-toggle {
    display: none; }

  .menu-toggle:checked + .menu-icon + nav {
    opacity: 1;
    pointer-events: all; }

  .menu-toggle + .menu-icon::before {
    content: "☰"; }

  .menu-toggle:checked + .menu-icon::before {
    content: "✖"; }

  .container-full {
    padding: 20px 0; }

  .section-top {
    margin-bottom: 40px; }

  .showcase {
    margin-top: 0;
    gap: 30px; }

  .register-cta {
    min-height: auto; }

  .cta-btn.centered {
    margin-top: 40px;
    margin-bottom: 0; }

  .pricing-home {
    grid-template-columns: 1fr 1fr; }

  .pricing-cards {
    grid-template-columns: 1fr 1fr; }

  footer .footer-content {
    flex-direction: column;
    gap: 30px;
    padding: 40px 20px; } }
@media only screen and (max-width: 768px) {
  .hero.banner {
    height: 200px; }
  .hero .hero-content .hero-subtitle {
    font-size: 16px;
    margin: 15px auto 25px auto; }
  .hero .hero-content .hero-benefits {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin: 25px auto; }
  .hero .hero-content .benefit-item {
    font-size: 15px; }

  h1 {
    font-size: 32px; }

  .ai-infrastructure {
    grid-template-columns: 1fr; }

  .cta-bottom {
    grid-template-columns: 1fr; }

  .pricing-cards {
    grid-template-columns: 1fr;
    justify-items: center; }
    .pricing-cards .pricing-card {
      max-width: 500px;
      width: 100%; } }
@media only screen and (max-width: 600px) {
  h1 {
    font-size: 28px; }

  h2 {
    font-size: 25px; }

  h3 {
    font-size: 20px; }

  .showcase h3 span {
    font-size: 30px; }
  .showcase img {
    aspect-ratio: 1 / 1; }

  p {
    font-size: 14px; }

  .ai-infrastructure {
    grid-template-columns: 1fr; }

  .pricing-home {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center; }
    .pricing-home .pricing-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      max-width: 500px; } }

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