:root {
  --bg: #06111f;
  --bg-deep: #030911;
  --panel: #0c1b2d;
  --panel-soft: #10263d;
  --blue: #087cf6;
  --blue-light: #26b6ff;
  --green: #59d325;
  --green-light: #9cff4f;
  --text: #f6fbff;
  --muted: #b9c8d8;
  --line: rgba(38, 182, 255, 0.22);
  --shadow: 0 24px 70px rgba(0, 18, 38, 0.44);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 6%, rgba(8, 124, 246, 0.3), transparent 32rem),
    radial-gradient(circle at 86% 0%, rgba(89, 211, 37, 0.18), transparent 30rem),
    linear-gradient(180deg, var(--bg), var(--bg-deep));
}

a {
  color: inherit;
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  padding: 28px clamp(22px, 6vw, 84px) 78px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 9, 17, 0.18), rgba(3, 9, 17, 0.78) 58%),
    radial-gradient(circle at 24% 72%, rgba(38, 182, 255, 0.12), transparent 26rem);
}

.nav {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 8px;
  background: transparent;
  filter: drop-shadow(0 12px 22px rgba(8, 124, 246, 0.22));
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link {
  color: var(--blue-light);
  text-decoration: none;
  font-weight: 800;
}

.hero-watermark {
  position: absolute;
  inset-inline-end: 6vw;
  top: 90px;
  z-index: -2;
  width: min(36rem, 42vw);
  opacity: 0.16;
  transform: rotate(-4deg);
}

.hero-watermark img {
  display: block;
  width: 100%;
  height: auto;
}

.company-preview {
  position: absolute;
  inset-inline-end: clamp(24px, 8vw, 130px);
  bottom: 42px;
  z-index: -1;
  width: 380px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(8, 124, 246, 0.04)),
    rgba(12, 27, 45, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.preview-top {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.preview-top span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(185, 200, 216, 0.35);
}

.preview-top span:nth-child(2) {
  background: var(--blue-light);
}

.preview-top span:nth-child(3) {
  background: var(--green);
}

.preview-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.preview-header strong {
  font-size: 1.25rem;
}

.preview-header small {
  color: var(--muted);
  font-weight: 800;
}

.metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border-radius: 8px;
  color: #03101d;
  background: linear-gradient(145deg, var(--green-light), var(--blue-light));
}

.metric span {
  font-weight: 900;
}

.metric b {
  font-size: 2.45rem;
  line-height: 1;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.metric-grid div {
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.metric-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.metric-grid strong {
  display: block;
  margin-top: 6px;
  font-size: 1.5rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.timeline span {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.timeline .done {
  background: var(--blue-light);
}

.timeline .active {
  background: var(--green-light);
  box-shadow: 0 0 22px rgba(156, 255, 79, 0.36);
}

.time-row.active {
  color: var(--green-light);
  border: 1px solid rgba(89, 211, 37, 0.24);
  background: rgba(89, 211, 37, 0.08);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 116px 0 0 auto;
  text-align: right;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-light);
  font-weight: 900;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: 4.55rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 2.65rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.lead {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.9;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  min-width: 168px;
  padding: 0 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
}

.primary {
  color: #03101d;
  background: linear-gradient(145deg, var(--green-light), var(--blue-light) 48%, var(--blue));
  box-shadow: 0 16px 34px rgba(8, 124, 246, 0.26);
}

.secondary {
  color: var(--blue-light);
  border: 1px solid var(--line);
  background: rgba(38, 182, 255, 0.07);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px clamp(22px, 6vw, 84px);
}

.section-heading {
  max-width: 680px;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.features article {
  min-height: 248px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(38, 182, 255, 0.075), rgba(89, 211, 37, 0.035)),
    rgba(255, 255, 255, 0.035);
}

.features span {
  color: var(--blue-light);
  font-weight: 900;
}

.features h3 {
  margin: 16px 0 12px;
  font-size: 1.2rem;
}

.features p,
.trust p,
.process p,
.policy p {
  color: var(--muted);
  line-height: 1.9;
}

.process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.process article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.process span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #03101d;
  font-weight: 900;
  background: linear-gradient(145deg, var(--green-light), var(--blue-light));
}

.process h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.trust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(8, 124, 246, 0.14), rgba(89, 211, 37, 0.06)),
    rgba(255, 255, 255, 0.035);
}

.trust > div {
  max-width: 690px;
}

footer {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 30px 20px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

footer p {
  margin: 0;
}

footer a {
  color: var(--blue-light);
  text-decoration: none;
}

.plain {
  min-height: 100vh;
}

.page-nav {
  padding: 28px clamp(22px, 6vw, 84px);
}

.policy {
  max-width: 920px;
  margin: 50px auto 90px;
  padding: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(8, 124, 246, 0.12), rgba(89, 211, 37, 0.045)),
    rgba(255, 255, 255, 0.035);
}

.policy h1 {
  font-size: 3rem;
}

.policy h2 {
  margin-top: 34px;
  font-size: 1.45rem;
}

@media (max-width: 980px) {
  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding-bottom: 52px;
  }

  .hero-content {
    order: 1;
    margin: 72px 0 0;
  }

  .company-preview {
    position: relative;
    order: 2;
    inset: auto;
    z-index: 1;
    width: min(100%, 390px);
    margin: 44px auto 0;
  }

  .hero-watermark {
    width: 25rem;
    max-width: 74vw;
    opacity: 0.11;
  }

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

@media (max-width: 620px) {
  .hero {
    padding: 20px 22px 44px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-actions {
    flex-wrap: wrap;
    gap: 12px;
  }

  .brand {
    font-size: 1.25rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  h1 {
    font-size: 2.6rem;
  }

  h2 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1.03rem;
  }

  .actions,
  .trust,
  footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .features,
  .process {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 22px;
  }

  .policy {
    margin: 28px 22px 70px;
    padding: 28px;
  }
}
