:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #080b19;
  color: #f5f7ff;
}

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 16% 12%, rgba(100, 116, 255, .22), transparent 34rem),
    radial-gradient(circle at 88% 80%, rgba(46, 210, 174, .12), transparent 30rem),
    #080b19;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: .28;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 48px;
}

.mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: #e7eaff;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mark::before {
  width: 15px;
  height: 15px;
  border: 2px solid #7c8cff;
  border-radius: 50%;
  box-shadow: 10px 0 0 -4px #42d7b2;
  content: "";
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: end;
  min-height: calc(100vh - 164px);
  padding: 80px 0 72px;
}

.eyebrow {
  margin: 0 0 20px;
  color: #9ba8ff;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.6rem, 9vw, 8rem);
  font-weight: 760;
  letter-spacing: -.075em;
  line-height: .84;
}

h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(92deg, #8693ff, #5ce1bf 70%);
  background-clip: text;
  -webkit-background-clip: text;
}

.intro {
  max-width: 620px;
  margin: 34px 0 0;
  color: #c5cbe2;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.panel {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid rgba(150, 160, 255, .22);
  border-radius: 28px;
  background: rgba(18, 23, 48, .72);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
  backdrop-filter: blur(14px);
}

.panel::after {
  position: absolute;
  width: 170px;
  height: 170px;
  right: -68px;
  bottom: -88px;
  border: 1px solid rgba(93, 225, 191, .32);
  border-radius: 50%;
  content: "";
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  color: #83e4c9;
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.status::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(131, 228, 201, .1);
  content: "";
}

.panel h2 {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.15;
}

.panel p {
  margin: 0;
  color: #b4bad2;
  font-size: 1rem;
  line-height: 1.7;
}

.arabic {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  direction: rtl;
  font-family: Tahoma, "Segoe UI", sans-serif;
  text-align: right;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  color: #858da9;
  font-size: .9rem;
}

footer strong { color: #cfd4e8; }

@media (max-width: 780px) {
  main { padding-top: 32px; }
  .hero {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: auto;
    padding: 72px 0 64px;
  }
  h1 { font-size: clamp(3.5rem, 19vw, 6rem); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; }
}
