:root {
  color-scheme: dark;
  font-family: "Tajawal", system-ui, sans-serif;
  color: #f8fafc;
  background: #0d1324;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #0d1324;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
}

a {
  color: inherit;
}

.page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 36px clamp(24px, 6vw, 92px) 28px;
  background:
    radial-gradient(circle at 14% 12%, rgb(79 70 229 / 24%), transparent 30%),
    radial-gradient(circle at 88% 80%, rgb(14 165 233 / 14%), transparent 32%),
    linear-gradient(145deg, #11182c 0%, #0d1324 54%, #0a1020 100%);
}

.page::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 3%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 3%) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  content: "";
  pointer-events: none;
}

.nav,
.hero,
.features,
footer {
  position: relative;
  z-index: 2;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
}

.brand img {
  width: auto;
  height: 44px;
  object-fit: contain;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border: 1px solid rgb(255 255 255 / 11%);
  border-radius: 999px;
  color: #cbd5e1;
  background: rgb(255 255 255 / 5%);
  font-size: 14px;
}

.status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #818cf8;
  box-shadow: 0 0 0 5px rgb(129 140 248 / 13%);
}

.hero {
  width: min(690px, 62vw);
  padding-top: clamp(80px, 12vh, 130px);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 24px;
  color: #a5b4fc;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .02em;
}

h1 {
  margin: 0;
  font-size: clamp(52px, 7.6vw, 108px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.055em;
}

h1 span {
  color: transparent;
  background: linear-gradient(90deg, #a5b4fc, #67e8f9);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero > p {
  max-width: 590px;
  margin: 30px 0 0;
  color: #aab5c7;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.9;
}

.coming-soon {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 38px;
  padding: 13px 20px;
  border: 1px solid rgb(165 180 252 / 24%);
  border-radius: 14px;
  background: rgb(79 70 229 / 12%);
}

.coming-soon span {
  color: #94a3b8;
}

.coming-soon strong {
  color: #fff;
  font-size: 20px;
}

.promise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.promise-list span {
  position: relative;
  padding: 8px 28px 8px 12px;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 999px;
  color: #cbd5e1;
  background: rgb(255 255 255 / 4%);
  font-size: 13px;
}

.promise-list span::before {
  position: absolute;
  top: 50%;
  right: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #67e8f9;
  box-shadow: 0 0 12px rgb(103 232 249 / 60%);
  content: "";
  transform: translateY(-50%);
}

.visual {
  position: absolute;
  z-index: 1;
  top: 190px;
  left: clamp(34px, 8vw, 140px);
  width: min(30vw, 390px);
  aspect-ratio: .76;
}

.features {
  width: min(100%, 1180px);
  margin-top: 110px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
}

.section-kicker {
  display: block;
  margin-bottom: 7px;
  color: #818cf8;
  font-size: 13px;
  font-weight: 800;
}

.section-heading h2 {
  margin: 0;
  color: #f8fafc;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
}

.section-heading > p {
  width: min(470px, 45%);
  margin: 0;
  color: #8996aa;
  font-size: 15px;
  line-height: 1.8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  position: relative;
  display: flex;
  gap: 14px;
  min-height: 160px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 9%);
  border-radius: 22px;
  background: linear-gradient(145deg, rgb(255 255 255 / 7%), rgb(255 255 255 / 3%));
  box-shadow: inset 0 1px rgb(255 255 255 / 4%);
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
}

.feature-card::after {
  position: absolute;
  bottom: -55px;
  left: -45px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgb(79 70 229 / 10%);
  content: "";
}

.feature-card:hover {
  border-color: rgb(129 140 248 / 35%);
  background: linear-gradient(145deg, rgb(99 102 241 / 12%), rgb(255 255 255 / 4%));
  transform: translateY(-4px);
}

.feature-card.featured {
  border-color: rgb(103 232 249 / 18%);
  background: linear-gradient(145deg, rgb(79 70 229 / 18%), rgb(34 211 238 / 7%));
}

.feature-icon {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  place-items: center;
  border: 1px solid rgb(165 180 252 / 18%);
  border-radius: 13px;
  color: #a5b4fc;
  background: rgb(99 102 241 / 12%);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.feature-card h3 {
  margin: 3px 0 8px;
  color: #f8fafc;
  font-size: 17px;
}

.feature-card p {
  margin: 0;
  color: #8f9caf;
  font-size: 14px;
  line-height: 1.75;
}

.preview-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 15px 18px;
  border: 1px dashed rgb(129 140 248 / 24%);
  border-radius: 16px;
  color: #94a3b8;
  background: rgb(79 70 229 / 6%);
}

.preview-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.preview-note strong {
  color: #e2e8f0;
}

.preview-pulse {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: #818cf8;
  box-shadow: 0 0 0 6px rgb(129 140 248 / 12%);
  animation: preview-pulse 2s ease-in-out infinite;
}

@keyframes preview-pulse {
  50% {
    box-shadow: 0 0 0 11px rgb(129 140 248 / 3%);
    transform: scale(.88);
  }
}

.phone {
  position: absolute;
  inset: 0;
  padding: 28px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 48px;
  background: linear-gradient(160deg, rgb(255 255 255 / 12%), rgb(255 255 255 / 4%));
  box-shadow: 0 45px 100px rgb(0 0 0 / 38%);
  backdrop-filter: blur(22px);
  transform: rotate(-7deg);
}

.phone-bar {
  width: 34%;
  height: 7px;
  margin: 0 auto 52px;
  border-radius: 999px;
  background: rgb(255 255 255 / 20%);
}

.phone-logo {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 19px;
  background: #4f46e5;
  box-shadow: 0 18px 40px rgb(79 70 229 / 35%);
}

.phone-logo img {
  width: 46px;
  height: 46px;
}

.phone-line {
  width: 58%;
  height: 12px;
  margin-top: 12px;
  border-radius: 999px;
  background: rgb(255 255 255 / 12%);
}

.phone-line.wide {
  width: 82%;
  height: 18px;
  background: rgb(255 255 255 / 22%);
}

.phone-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 42px;
}

.phone-cards span {
  aspect-ratio: .82;
  border: 1px solid rgb(255 255 255 / 9%);
  border-radius: 16px;
  background: linear-gradient(145deg, rgb(129 140 248 / 24%), rgb(255 255 255 / 4%));
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.orb-one {
  top: -8%;
  left: -24%;
  width: 180px;
  height: 180px;
  background: rgb(79 70 229 / 35%);
}

.orb-two {
  right: -14%;
  bottom: 4%;
  width: 120px;
  height: 120px;
  background: rgb(34 211 238 / 20%);
}

footer {
  display: flex;
  justify-content: space-between;
  margin-top: 64px;
  padding-top: 20px;
  border-top: 1px solid rgb(255 255 255 / 8%);
  color: #64748b;
  font-size: 13px;
}

@media (max-width: 900px) {
  .hero {
    width: min(650px, 100%);
    padding-top: 90px;
  }

  .visual {
    display: none;
  }

  .features {
    margin-top: 74px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .page {
    padding: 24px 20px;
  }

  .brand img {
    height: 36px;
  }

  .status {
    padding: 8px 11px;
    font-size: 12px;
  }

  .hero {
    padding-top: 74px;
  }

  h1 {
    font-size: clamp(48px, 16vw, 70px);
  }

  .promise-list {
    gap: 7px;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    width: 100%;
    margin-top: 12px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  footer {
    flex-direction: column;
    gap: 6px;
  }
}
