@charset "UTF-8";

:root {
  color-scheme: dark;
  font-family: "Tajawal", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --bg: #030824;
  --surface: #07143f;
  --surface-soft: rgba(12, 29, 78, 0.72);
  --blue: #1775ff;
  --cyan: #1de2ec;
  --text: #f5f9ff;
  --muted: #9eabd2;
  --line: rgba(155, 194, 255, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  width: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    radial-gradient(circle at 50% -10%, #092365 0, transparent 35%),
    var(--bg);
  background-size: 72px 72px, 72px 72px, auto, auto;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; }

.page-glow {
  position: fixed;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.15;
  pointer-events: none;
}
.page-glow--one { top: 20%; right: -220px; background: var(--blue); }
.page-glow--two { bottom: 5%; left: -250px; background: var(--cyan); }

.site-header,
main,
footer {
  width: min(1180px, calc(100% - 44px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 10;
  min-height: 90px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.brand,
.footer-brand {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 11px;
  direction: ltr;
}
.brand img,
.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 118, 255, 0.26);
}
.brand span,
.footer-brand span { display: flex; flex-direction: column; }
.brand b,
.footer-brand b { font-size: 17px; letter-spacing: 2px; line-height: 1; }
.brand small,
.footer-brand small { margin-top: 5px; color: var(--muted); font-size: 10px; }

.site-header nav { display: flex; align-items: center; gap: 33px; }
.site-header nav a { color: #b5c1e3; font-size: 14px; font-weight: 500; transition: color 0.2s ease; }
.site-header nav a:hover { color: white; }

.header-download {
  justify-self: end;
  padding: 11px 19px;
  border: 1px solid rgba(74, 156, 255, 0.38);
  border-radius: 12px;
  color: #dceaff;
  background: rgba(23, 117, 255, 0.1);
  font-size: 13px;
  font-weight: 700;
  transition: 0.2s ease;
}
.header-download:hover { border-color: var(--cyan); background: rgba(29, 226, 236, 0.12); transform: translateY(-2px); }

.hero {
  min-height: 700px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(40px, 7vw, 94px);
  padding: 82px 0 92px;
}

.eyebrow,
.section-label,
.section-heading > span {
  color: #75e9f3;
  font-size: 13px;
  font-weight: 700;
}
.eyebrow { display: inline-flex; align-items: center; gap: 9px; }
.eyebrow span { width: 27px; height: 1px; background: linear-gradient(90deg, var(--cyan), transparent); }

.hero h1 {
  max-width: 670px;
  margin: 19px 0 0;
  font-size: clamp(45px, 5.25vw, 76px);
  font-weight: 900;
  line-height: 1.13;
  letter-spacing: -2.7px;
}
.hero h1 em {
  position: relative;
  display: inline-block;
  direction: ltr;
  color: transparent;
  background: linear-gradient(100deg, #3f82ff, #25eaf1);
  background-clip: text;
  -webkit-background-clip: text;
  font-style: normal;
  letter-spacing: -1px;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: -5px;
  width: 70%;
  height: 3px;
  border-radius: 9px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}
.hero-lead {
  max-width: 590px;
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
}

.hero-actions { display: flex; align-items: stretch; gap: 13px; margin-top: 31px; }
.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 21px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.button:hover { transform: translateY(-3px); }
.button--primary {
  min-width: 227px;
  color: white;
  background: linear-gradient(120deg, #0e5df2, #08b8d4);
  box-shadow: 0 15px 38px rgba(0, 113, 255, 0.28);
}
.button--primary > span:not(.download-symbol) { display: flex; flex-direction: column; }
.button--primary small { margin-top: 2px; color: #ccecff; font-size: 10px; font-weight: 500; }
.download-symbol { font-size: 25px; line-height: 1; }
.button--ghost { border: 1px solid var(--line); color: #d4ddf8; background: rgba(255, 255, 255, 0.025); }
.button--ghost:hover { border-color: rgba(29, 226, 236, 0.45); }

.trust-row { display: flex; flex-wrap: wrap; gap: 21px; margin-top: 25px; color: #8f9cc4; font-size: 12px; }
.trust-row span { display: flex; align-items: center; gap: 6px; }
.trust-row i { width: 17px; height: 17px; display: grid; place-items: center; border-radius: 50%; color: var(--cyan); background: rgba(29, 226, 236, 0.1); font-size: 10px; font-style: normal; }

.product-stage { position: relative; min-height: 530px; display: grid; place-items: center; perspective: 1000px; }
.product-stage::before {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 135, 255, 0.28), rgba(5, 12, 41, 0) 68%);
  filter: blur(5px);
}
.orbit { position: absolute; border: 1px solid rgba(99, 176, 255, 0.16); border-radius: 50%; }
.orbit--outer { width: 500px; height: 500px; animation: orbit-pulse 4s ease-in-out infinite; }
.orbit--inner { width: 400px; height: 400px; border-style: dashed; animation: spin 36s linear infinite; }

.app-card {
  position: relative;
  z-index: 2;
  width: min(390px, 90%);
  overflow: hidden;
  border: 1px solid rgba(119, 194, 255, 0.27);
  border-radius: 27px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.97), rgba(238, 247, 255, 0.94));
  box-shadow: 0 42px 90px rgba(0, 0, 25, 0.54), 0 0 80px rgba(0, 128, 255, 0.13);
  transform: rotateY(-5deg) rotateX(2deg);
}
.app-card-top {
  height: 47px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 17px;
  color: #7c89ae;
  background: #f7fbff;
  border-bottom: 1px solid #e3edfb;
  font-size: 9px;
}
.app-card-top > span:nth-child(2) { color: #07194e; font-weight: 900; letter-spacing: 1.2px; }
.window-dots { justify-self: start; display: flex; gap: 4px; direction: ltr; }
.window-dots i { width: 6px; height: 6px; border-radius: 50%; background: #d1dcec; }
.secure-dot { justify-self: end; }
.secure-dot::before { content: ""; display: inline-block; width: 5px; height: 5px; margin-left: 4px; border-radius: 50%; background: #16cbae; box-shadow: 0 0 8px #16cbae; }
.app-card-body { display: flex; flex-direction: column; align-items: center; padding: 25px 27px 24px; color: #071744; text-align: center; }
.app-card-body > img { width: 89px; height: 89px; object-fit: cover; border-radius: 20px; box-shadow: 0 12px 28px rgba(0, 76, 206, 0.25); }
.mini-kicker { margin-top: 14px; color: #1b7dec; font-size: 7px; font-weight: 900; letter-spacing: 1px; }
.app-card-body h2 { margin: 7px 0 0; font-size: 17px; line-height: 1.5; }
.fake-input,
.fake-button { width: 100%; display: flex; align-items: center; justify-content: space-between; border-radius: 12px; }
.fake-input { height: 48px; margin-top: 19px; padding: 5px 7px 5px 13px; border: 1px solid #d7e5f8; color: #9aa6bc; background: white; direction: ltr; font-family: Arial, sans-serif; font-size: 9px; text-align: left; }
.fake-input b { padding: 10px 12px; border-radius: 9px; color: #2b62b5; background: #eaf3ff; font-family: "Tajawal", sans-serif; font-size: 9px; }
.fake-button { height: 48px; margin-top: 9px; padding: 0 19px; color: white; background: linear-gradient(110deg, #0964f5, #13bcd7); box-shadow: 0 10px 22px rgba(8, 103, 224, 0.2); font-size: 11px; }
.local-line { margin-top: 13px; color: #8b97ae; font-size: 8px; }
.local-line span { margin-left: 4px; color: #18c7ae; }

.purpose { padding: 104px 0; border-top: 1px solid var(--line); }
.section-heading { max-width: 690px; margin: 0 auto; text-align: center; }
.section-heading h2,
.steps-copy h2 { margin: 13px 0 0; font-size: clamp(34px, 4vw, 53px); line-height: 1.22; letter-spacing: -1.5px; }
.section-heading p,
.steps-copy > p { margin: 18px 0 0; color: var(--muted); font-size: 15px; line-height: 1.9; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; margin-top: 52px; }
.feature-card {
  position: relative;
  min-height: 284px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.feature-card:hover { transform: translateY(-6px); border-color: rgba(63, 153, 255, 0.38); }
.feature-card--highlight { background: radial-gradient(circle at 95% 0, rgba(26, 211, 237, 0.13), transparent 42%), linear-gradient(145deg, rgba(17, 102, 224, 0.16), rgba(255, 255, 255, 0.02)); }
.feature-number { position: absolute; top: 27px; left: 28px; color: rgba(180, 207, 255, 0.25); font-size: 13px; font-weight: 800; }
.feature-icon { width: 53px; height: 53px; display: grid; place-items: center; border: 1px solid rgba(91, 177, 255, 0.26); border-radius: 16px; color: var(--cyan); background: rgba(11, 105, 222, 0.12); font-size: 23px; }
.feature-card h3 { margin: 32px 0 0; font-size: 20px; }
.feature-card p { margin: 11px 0 0; color: var(--muted); font-size: 14px; line-height: 1.9; }

.steps {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: center;
  padding: 112px 7%;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: radial-gradient(circle at 100% 50%, rgba(13, 104, 232, 0.17), transparent 42%), rgba(7, 18, 57, 0.55);
}
.steps-copy h2 { font-size: clamp(35px, 4vw, 49px); }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 25px; color: #70e6f0; font-size: 14px; font-weight: 700; }
.text-link:hover span { transform: translateX(-4px); }
.text-link span { transition: transform 0.2s ease; }
.step-list { margin: 0; padding: 0; list-style: none; }
.step-list li { position: relative; display: grid; grid-template-columns: 57px 1fr; gap: 18px; padding: 22px 0; }
.step-list li:not(:last-child)::after { content: ""; position: absolute; top: 70px; right: 28px; bottom: -9px; width: 1px; background: linear-gradient(var(--blue), rgba(23, 117, 255, 0.08)); }
.step-list li > b { position: relative; z-index: 1; width: 57px; height: 57px; display: grid; place-items: center; border: 1px solid rgba(55, 164, 255, 0.36); border-radius: 18px; color: white; background: linear-gradient(145deg, #0a60e8, #0a9fc7); box-shadow: 0 12px 25px rgba(0, 87, 210, 0.2); font-size: 17px; }
.step-list h3 { margin: 1px 0 0; font-size: 18px; }
.step-list p { margin: 7px 0 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.download-banner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  margin-top: 108px;
  padding: 37px 42px;
  border-radius: 28px;
  background: linear-gradient(112deg, #0d50da, #087cdd 55%, #08afc1);
  box-shadow: 0 28px 70px rgba(0, 77, 191, 0.24);
}
.download-banner::after { content: ""; position: absolute; left: -50px; width: 240px; height: 240px; border: 45px solid rgba(255, 255, 255, 0.08); border-radius: 50%; }
.banner-logo { position: relative; z-index: 1; width: 82px; height: 82px; padding: 7px; border: 1px solid rgba(255, 255, 255, 0.24); border-radius: 22px; background: rgba(2, 10, 43, 0.22); }
.banner-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
.banner-copy { position: relative; z-index: 1; }
.banner-copy > span { color: #aeeef6; font-size: 12px; font-weight: 700; }
.banner-copy h2 { margin: 6px 0 0; font-size: clamp(24px, 3vw, 34px); }
.banner-copy p { margin: 7px 0 0; color: rgba(235, 249, 255, 0.72); font-size: 11px; }
.button--light { position: relative; z-index: 1; min-width: 180px; color: #0753a9; background: white; box-shadow: 0 14px 30px rgba(0, 41, 108, 0.2); }
.legal-note { max-width: 760px; margin: 27px auto 0; color: #7582aa; font-size: 11px; line-height: 1.8; text-align: center; }

footer {
  min-height: 145px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  margin-top: 76px;
  border-top: 1px solid var(--line);
}
.footer-brand img { width: 38px; height: 38px; }
.footer-brand small { font-family: Arial, sans-serif; font-size: 8px; letter-spacing: 0.5px; }
.signature { display: flex; flex-direction: column; align-items: center; color: #96a3c8; font-size: 11px; }
.signature b { margin-top: 5px; color: #dae4ff; font-family: Arial, sans-serif; font-size: 12px; font-weight: 400; letter-spacing: 0.3px; }
.x-profile { justify-self: end; display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px 8px 14px; border: 1px solid var(--line); border-radius: 99px; color: #b9c6e8; font-family: Arial, sans-serif; font-size: 11px; transition: 0.2s ease; }
.x-profile b { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; color: white; background: #0d68dc; font-size: 13px; }
.x-profile:hover { border-color: rgba(29, 226, 236, 0.45); color: white; transform: translateY(-2px); }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes orbit-pulse { 50% { transform: scale(1.035); opacity: 0.65; } }

a:focus-visible { outline: 3px solid rgba(29, 226, 236, 0.45); outline-offset: 4px; }

@media (max-width: 940px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 72px; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero h1 { max-width: 760px; }
  .product-stage { width: min(590px, 100%); margin: -10px auto 0; overflow: hidden; border-radius: 34px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 235px; }
  .steps { grid-template-columns: 1fr; padding: 72px 9%; }
  .download-banner { grid-template-columns: auto 1fr; }
  .download-banner .button { grid-column: 1 / -1; width: 100%; }
}

@media (max-width: 620px) {
  .site-header, main, footer { width: calc(100% - 24px); }
  .site-header { min-height: 72px; gap: 12px; }
  .brand img { width: 38px; height: 38px; }
  .brand b { font-size: 14px; }
  .brand small { font-size: 9px; }
  .header-download { min-width: 68px; padding: 9px 12px; font-size: 11px; text-align: center; }
  .hero { min-height: auto; grid-template-columns: minmax(0, 1fr); gap: 22px; padding: 50px 0 60px; }
  .hero-copy { min-width: 0; width: 100%; }
  .eyebrow { font-size: 11px; }
  .hero h1 { width: 100%; margin-top: 16px; font-size: clamp(34px, 10.8vw, 48px); line-height: 1.22; letter-spacing: -1.25px; overflow-wrap: anywhere; }
  .hero h1 em { white-space: nowrap; }
  .hero-lead { max-width: 440px; font-size: 14px; line-height: 1.9; }
  .hero-actions { width: 100%; flex-direction: column; }
  .button { width: 100%; }
  .trust-row { width: 100%; justify-content: center; gap: 10px 14px; }
  .product-stage { min-height: 430px; width: 100%; margin-top: 0; border-radius: 26px; }
  .product-stage::before { width: 320px; height: 320px; }
  .orbit--outer { width: min(410px, 116vw); height: min(410px, 116vw); }
  .orbit--inner { width: min(330px, 92vw); height: min(330px, 92vw); }
  .app-card { width: min(350px, calc(100% - 18px)); transform: none; border-radius: 23px; }
  .app-card-body { padding: 22px 18px 21px; }
  .app-card-body h2 { font-size: 16px; }
  .fake-input span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .purpose { padding: 80px 0; }
  .section-heading h2, .steps-copy h2 { font-size: 34px; letter-spacing: -0.8px; }
  .section-heading p, .steps-copy > p { font-size: 14px; }
  .feature-grid { margin-top: 36px; }
  .feature-card { padding: 25px; }
  .steps { gap: 35px; padding: 54px 24px; border-radius: 25px; }
  .step-list li { grid-template-columns: 48px 1fr; gap: 14px; }
  .step-list li > b { width: 48px; height: 48px; border-radius: 15px; }
  .step-list li:not(:last-child)::after { top: 60px; right: 24px; }
  .download-banner { grid-template-columns: 1fr; justify-items: center; margin-top: 75px; padding: 32px 23px; text-align: center; }
  .banner-logo { width: 74px; height: 74px; }
  footer { grid-template-columns: 1fr; justify-items: center; gap: 24px; padding: 34px 0; }
  .footer-brand, .x-profile { justify-self: center; }
}

@media (max-width: 390px) {
  .site-header, main, footer { width: calc(100% - 20px); }
  .brand { gap: 8px; }
  .brand img { width: 35px; height: 35px; border-radius: 10px; }
  .brand small { display: none; }
  .header-download { min-width: 62px; padding: 8px 10px; }
  .hero { padding-top: 42px; }
  .hero h1 { font-size: 33px; }
  .hero-lead { font-size: 13px; }
  .trust-row { display: grid; grid-template-columns: repeat(2, auto); font-size: 10px; }
  .product-stage { min-height: 400px; }
  .app-card { width: calc(100% - 10px); }
  .app-card-top { padding-inline: 12px; }
  .app-card-body { padding-inline: 14px; }
  .app-card-body > img { width: 76px; height: 76px; border-radius: 17px; }
  .app-card-body h2 { font-size: 14px; }
  .fake-input { padding-left: 8px; }
  .section-heading h2, .steps-copy h2 { font-size: 30px; }
  .feature-card { min-height: 0; }
  .steps { padding: 46px 18px; }
  .step-list li { grid-template-columns: 44px 1fr; gap: 12px; }
  .step-list li > b { width: 44px; height: 44px; }
  .step-list li:not(:last-child)::after { top: 56px; right: 22px; }
  .step-list h3 { font-size: 16px; }
  .step-list p { font-size: 12px; }
  .download-banner { padding-inline: 18px; }
  .banner-copy h2 { font-size: 25px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
