@charset "UTF-8";
:root {
  --lightningcss-light:initial;
  --lightningcss-dark: ;
  color-scheme: light;
  --awl-cyan:#24A0BA;
  --awl-cyan-2:#67D8E8;
  --awl-dark:#272727;
  --awl-bg:#071217;
  --awl-bg-2:#0b1b21;
  --awl-white:#F7F7F7;
  --awl-muted:#aebdc3;
  --awl-border:rgba(247,247,247,.12);
  --awl-glow:rgba(36,160,186,.35);
  --awl-radius:18px;
  --awl-background:rgba(7,18,23,.72);
}

:root[data-theme=dark] {
  --lightningcss-light: ;
  --lightningcss-dark:initial;
  color-scheme: dark;
  --awl-bg:#f7f7f7;
  --awl-bg-2:#fff;
  --awl-white:#272727;
  --awl-muted:#5f686c;
  --awl-border:rgba(39,39,39,.12);
  --awl-background:rgba(247,247,247,.78);
}

:root[lang=en] {
  --awl-font-family: "IBM Plex Mono",monospace;
}

:root[lang=ar] {
  --awl-font-family: "IBM Plex Sans Arabic",monospace;
}

.awl-block {
  display: block;
}

.awl-inline {
  display: inline;
}

.awl-inline-block {
  display: inline-block;
}

.awl-flex {
  display: flex;
}

.awl-inline-flex {
  display: inline-flex;
}

.awl-grid {
  display: grid;
}

.awl-inline-grid {
  display: inline-grid;
}

.awl-none {
  display: none;
}

/* Direction */
.awl-flex-row {
  flex-direction: row;
}

.awl-flex-row-reverse {
  flex-direction: row-reverse;
}

.awl-flex-column {
  flex-direction: column;
}

.awl-flex-column-reverse {
  flex-direction: column-reverse;
}

/* Wrap */
.awl-flex-wrap {
  flex-wrap: wrap;
}

.awl-flex-nowrap {
  flex-wrap: nowrap;
}

.awl-flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

/* Align items */
.awl-align-items-start {
  align-items: flex-start;
}

.awl-align-items-center {
  align-items: center;
}

.awl-align-items-end {
  align-items: flex-end;
}

.awl-align-items-baseline {
  align-items: baseline;
}

.awl-align-items-stretch {
  align-items: stretch;
}

/* Justify content */
.awl-justify-content-start {
  justify-content: flex-start;
}

.awl-justify-content-center {
  justify-content: center;
}

.awl-justify-content-end {
  justify-content: flex-end;
}

.awl-justify-content-between {
  justify-content: space-between;
}

.awl-justify-content-around {
  justify-content: space-around;
}

.awl-justify-content-evenly {
  justify-content: space-evenly;
}

/* Align self */
.awl-align-self-auto {
  align-self: auto;
}

.awl-align-self-start {
  align-self: flex-start;
}

.awl-align-self-center {
  align-self: center;
}

.awl-align-self-end {
  align-self: flex-end;
}

.awl-align-self-stretch {
  align-self: stretch;
}

/* Gap */
.awl-gap-0 {
  gap: 0;
}

.awl-gap-1 {
  gap: 0.25rem;
}

.awl-gap-2 {
  gap: 0.5rem;
}

.awl-gap-3 {
  gap: 1rem;
}

.awl-gap-4 {
  gap: 1.5rem;
}

.awl-gap-5 {
  gap: 2rem;
}

.awl-gap-6 {
  gap: 3rem;
}

.awl-gap-7 {
  gap: 4rem;
}

.awl-gap-8 {
  gap: 5rem;
}

.awl-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--awl-cyan);
  padding: 14px 22px;
  border-radius: 999px;
  transition: 0.3s;
  cursor: pointer;
}

.awl-btn-primary {
  background: var(--awl-cyan);
  color: #fff;
  box-shadow: 0 0 30px rgba(36, 160, 186, 0.24);
}

.awl-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 42px rgba(36, 160, 186, 0.42);
}

.awl-btn-ghost {
  background: transparent;
  color: var(--awl-white);
}

/* @use "./utilities/spacing.css"; */
/* @use "./utilities/sizing.css"; */
/* @use "./utilities/typography.css"; */
.awl-static {
  position: static;
}

.awl-relative {
  position: relative;
}

.awl-absolute {
  position: absolute;
}

.awl-fixed {
  position: fixed;
}

.awl-sticky {
  position: sticky;
}

.awl-top-0 {
  top: 0;
}

.awl-right-0 {
  right: 0;
}

.awl-bottom-0 {
  bottom: 0;
}

.awl-left-0 {
  left: 0;
}

.awl-inset-0 {
  inset: 0;
}

/* @use "./utilities/overflow.css"; */
/* @use "./utilities/border.css"; */
/* @use "./utilities/background.css"; */
/* @use "./utilities/responsive.css"; */
.awl-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.awl-menu .menu-item-has-children {
  position: relative;
}
.awl-menu .menu-item-has-children > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.awl-menu .menu-item-has-children > a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.awl-menu .menu-item-has-children:hover > a::after {
  transform: rotate(225deg);
}
.awl-menu ul a {
  font-size: 14px;
  color: var(--awl-white);
  opacity: 0.9;
  transition: 0.25s;
}
.awl-menu ul a:hover {
  color: var(--awl-cyan);
}
.awl-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  margin: 0;
  padding: 0.5rem 0;
  list-style: none;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}
.awl-menu .sub-menu li {
  width: 100%;
}
.awl-menu .sub-menu li a {
  display: block;
  padding: 0.75rem 1rem;
  white-space: nowrap;
}
.awl-menu .sub-menu li a:hover {
  background: #f5f5f5;
}
.awl-menu .menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--awl-bg);
  color: var(--awl-white);
  font-family: var(--awl-font-family);
  line-height: 1.6;
}

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

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

button, input, select {
  font: inherit;
}

.awl-container {
  width: min(1280px, 100% - 48px);
  margin: auto;
}

.awl-header {
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--awl-background);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.awl-nav {
  height: 84px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.awl-logo {
  font-family: "IBM Plex Mono", monospace;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -1px;
}

.awl-logo span {
  color: var(--awl-cyan);
}

.awl-theme {
  border: 1px solid var(--awl-border);
  background: transparent;
  color: var(--awl-white);
  border-radius: 999px;
  padding: 9px 13px;
  cursor: pointer;
}

.awl-theme {
  width: 47px;
  height: 47px;
  padding: 0;
  position: relative;
}

.awl-login {
  font-size: 14px;
}

.awl-mobile {
  display: none;
}

.awl-hero {
  min-height: 920px;
  padding-top: 150px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 75% 40%, rgba(36, 160, 186, 0.2), transparent 31%), radial-gradient(circle at 20% 90%, rgba(36, 160, 186, 0.08), transparent 28%), var(--awl-bg);
}

.awl-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(36, 160, 186, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(36, 160, 186, 0.055) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
  pointer-events: none;
}

.awl-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 30px;
  min-height: 650px;
}

.awl-kicker {
  color: var(--awl-cyan);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.awl-title {
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(52px, 6vw, 92px);
  line-height: 0.98;
  letter-spacing: -5px;
  margin: 0 0 25px;
  font-weight: 700;
}

.awl-title .accent {
  color: var(--awl-cyan);
}

.awl-lead {
  font-size: 17px;
  max-width: 600px;
  color: var(--awl-muted);
  margin-bottom: 34px;
}

.awl-hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.awl-visual {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.awl-server {
  width: min(600px, 100%);
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.45));
  animation: awlFloat 7s ease-in-out infinite;
}

.awl-orbit {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(36, 160, 186, 0.14);
  transform: rotate(-18deg);
  animation: awlSpin 18s linear infinite;
}

.awl-orbit:before, .awl-orbit:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--awl-cyan);
  box-shadow: 0 0 20px var(--awl-cyan);
}

.awl-orbit:before {
  top: 10%;
  left: 24%;
}

.awl-orbit:after {
  right: 8%;
  bottom: 22%;
}

.awl-hud {
  position: absolute;
  background: var(--awl-background);
  border: 1px solid rgba(36, 160, 186, 0.55);
  box-shadow: 0 0 25px rgba(36, 160, 186, 0.14);
  backdrop-filter: blur(12px);
  padding: 18px;
  border-radius: 16px;
  min-width: 160px;
}

.awl-hud strong {
  display: block;
  font-size: 22px;
}

.awl-hud small {
  color: var(--awl-muted);
}

.hud-1 {
  right: 4%;
  top: 12%;
}

.hud-2 {
  left: 5%;
  top: 38%;
}

.hud-3 {
  right: 10%;
  bottom: 16%;
}

.awl-domain-box .awl-domain-ext {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid var(--awl-border);
  border-radius: 999px;
  padding: 10px 42px 10px 18px;
  color: var(--awl-white);
  background-color: transparent;
  font: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  outline: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2324A0BA' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.awl-domain-box .awl-domain-ext:hover {
  border-color: #24A0BA;
  background-color: rgba(36, 160, 186, 0.06);
}
.awl-domain-box .awl-domain-ext:focus {
  border-color: #24A0BA;
  box-shadow: 0 0 0 3px rgba(36, 160, 186, 0.15);
}
.awl-domain-box .awl-domain-ext option {
  color: #fff;
  background: #111;
}

.awl-domain {
  position: relative;
  z-index: 5;
  margin: -30px auto 0;
  width: min(800px, 100%);
}

.awl-domain-box {
  display: flex;
  align-items: center;
  padding: 8px;
  border: 1px solid rgba(36, 160, 186, 0.55);
  background: var(--awl-background);
  border-radius: 999px;
  box-shadow: 0 0 35px rgba(36, 160, 186, 0.12);
  backdrop-filter: blur(15px);
}

.awl-domain-box input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--awl-white);
  padding: 16px 18px;
  font-size: 15px;
  min-width: 0;
}

.awl-domain-submit {
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: var(--awl-cyan);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.awl-popular {
  display: flex;
  gap: 9px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 13px;
  color: var(--awl-muted);
  font-size: 12px;
}

.awl-chip {
  border: 1px solid var(--awl-border);
  border-radius: 999px;
  padding: 4px 12px;
  color: var(--awl-white);
}

.awl-trust {
  border-top: 1px solid var(--awl-border);
  border-bottom: 1px solid var(--awl-border);
  margin-top: 50px;
}

.awl-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.awl-trust-item {
  padding: 25px;
  display: flex;
  gap: 15px;
  align-items: center;
  border-right: 1px solid var(--awl-border);
}

.awl-trust-item:last-child {
  border-right: 0;
}

.awl-icon {
  font-size: 27px;
  color: var(--awl-cyan);
}

.awl-trust strong {
  display: block;
  font-size: 14px;
}

.awl-trust span {
  font-size: 11px;
  color: var(--awl-muted);
}

.awl-section {
  padding: 120px 0;
  position: relative;
}

.awl-section.light {
  background: var(--awl-white);
  color: var(--awl-dark);
}

.awl-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--awl-cyan);
  text-transform: uppercase;
}

.awl-section-title {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -3px;
  margin: 12px 0 45px;
}

.awl-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--awl-border);
  border-left: 1px solid var(--awl-border);
}

.awl-service {
  padding: 34px;
  border-right: 1px solid var(--awl-border);
  border-bottom: 1px solid var(--awl-border);
  min-height: 250px;
  transition: 0.35s;
  position: relative;
  overflow: hidden;
}

.awl-service:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--awl-cyan);
  transition: 0.4s;
}

.awl-service:hover {
  background: rgba(36, 160, 186, 0.06);
  transform: translateY(-4px);
}

.awl-service:hover:after {
  width: 100%;
}

.awl-service-number {
  color: var(--awl-cyan);
  font-size: 12px;
}

.awl-service h3 {
  font-size: 23px;
  margin: 25px 0 10px;
}

.awl-service p {
  color: var(--awl-muted);
  font-size: 14px;
}

.awl-system {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.awl-system-list {
  border-top: 1px solid var(--awl-border);
}

.awl-step {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--awl-border);
  font-size: 20px;
}

.awl-step b {
  color: var(--awl-cyan);
  font-size: 12px;
}

.awl-system-art {
  height: 520px;
  border: 1px solid var(--awl-border);
  border-radius: 28px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(36, 160, 186, 0.12), transparent 55%);
}

.awl-core {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid var(--awl-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 70px rgba(36, 160, 186, 0.18);
}

.awl-node {
  position: absolute;
  border: 1px solid rgba(36, 160, 186, 0.5);
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--awl-bg-2);
  font-size: 12px;
}

.node-a {
  top: 14%;
  left: 12%;
}

.node-b {
  top: 14%;
  right: 12%;
}

.node-c {
  bottom: 14%;
  left: 15%;
}

.node-d {
  bottom: 14%;
  right: 15%;
}

.awl-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.awl-price {
  border: 1px solid var(--awl-border);
  border-radius: 22px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.025);
}

.awl-price.featured {
  border-color: var(--awl-cyan);
  box-shadow: 0 0 45px rgba(36, 160, 186, 0.1);
}

.awl-price h3 {
  margin: 0;
}

.awl-price .amount {
  font-size: 44px;
  margin: 22px 0;
}

.awl-price ul {
  list-style: none;
  padding: 0;
  color: var(--awl-muted);
  font-size: 13px;
}

.awl-price li {
  margin: 10px 0;
}

.awl-price li:before {
  content: "✓";
  color: var(--awl-cyan);
  margin-right: 10px;
}

.awl-cta {
  border: 1px solid rgba(36, 160, 186, 0.45);
  border-radius: 28px;
  padding: 70px;
  text-align: center;
  background: radial-gradient(circle at 50% 0, rgba(36, 160, 186, 0.15), transparent 60%);
}

.awl-footer {
  padding: 70px 0 30px;
  border-top: 1px solid var(--awl-border);
}

.awl-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.awl-footer h4 {
  margin-top: 0;
}

.awl-footer a {
  display: block;
  color: var(--awl-muted);
  font-size: 13px;
  margin: 8px 0;
}

.awl-footer-bottom {
  margin-top: 55px;
  padding-top: 20px;
  border-top: 1px solid var(--awl-border);
  font-size: 12px;
  color: var(--awl-muted);
}

.awl-reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.awl-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.awl-parallax {
  will-change: transform;
}

@keyframes awlFloat {
  50% {
    transform: translateY(-12px);
  }
}
@keyframes awlSpin {
  to {
    transform: rotate(342deg);
  }
}
@media (max-width: 980px) {
  .awl-menu {
    display: none;
  }
  .awl-mobile {
    display: block;
    margin-left: auto;
  }
  .awl-nav {
    gap: 12px;
  }
  .awl-login {
    display: none;
  }
  .awl-hero-inner {
    grid-template-columns: 1fr;
  }
  .awl-visual {
    min-height: 500px;
  }
  .awl-title {
    font-size: 58px;
  }
  .awl-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .awl-services, .awl-pricing {
    grid-template-columns: 1fr 1fr;
  }
  .awl-system {
    grid-template-columns: 1fr;
  }
  .awl-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .awl-container {
    width: min(100% - 28px, 1280px);
  }
  .awl-nav {
    height: 70px;
  }
  .awl-logo {
    font-size: 20px;
  }
  .awl-actions .awl-btn, .awl-login {
    display: none;
  }
  .awl-hero {
    padding-top: 110px;
    min-height: auto;
  }
  .awl-title {
    font-size: 47px;
    letter-spacing: -3px;
  }
  .awl-visual {
    min-height: 380px;
  }
  .hud-1 {
    right: 0;
  }
  .hud-2 {
    left: 0;
  }
  .hud-3 {
    right: 0;
  }
  .awl-domain-box {
    border-radius: 22px;
  }
  .awl-domain-ext {
    display: none;
  }
  .awl-trust-grid, .awl-services, .awl-pricing {
    grid-template-columns: 1fr;
  }
  .awl-trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--awl-border);
  }
  .awl-footer-grid {
    grid-template-columns: 1fr;
  }
  .awl-cta {
    padding: 40px 20px;
  }
}
.awl-lang {
  position: relative;
}
.awl-lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}
.awl-lang-globe {
  font-size: 1.1rem;
}
.awl-lang-arrow {
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}
.awl-lang-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  inset-inline-end: 0;
  min-width: 150px;
  padding: 0.4rem;
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.awl-lang-dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0.75rem;
  border-radius: 5px;
  color: inherit;
  text-decoration: none;
}
.awl-lang-dropdown a:hover, .awl-lang-dropdown a.is-active {
  background: var(--color-surface);
}
.awl-lang.is-open .awl-lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.awl-lang.is-open .awl-lang-arrow {
  transform: rotate(180deg);
}
.awl-lang-check {
  font-size: 0.9rem;
}

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