:root {
  --bg: #020b1f;
  --bg-soft: #06132b;
  --blue: #0d7dff;
  --blue-2: #1867e8;
  --text: #ffffff;
  --muted: #c2c9d7;
  --ink: #08142e;
  --line: rgba(14, 115, 255, .35);
  --container: 1190px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
.container { width: min(var(--container), calc(100% - 42px)); margin: 0 auto; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: white;
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 38px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-name { font-size: 24px; font-weight: 800; letter-spacing: .08em; }
.brand-mark { width: 31px; height: 31px; position: relative; display: inline-block; transform: rotate(45deg); }
.brand-mark i { position: absolute; width: 18px; height: 8px; background: var(--blue); border-radius: 2px; }
.brand-mark i:first-child { left: 1px; top: 5px; }
.brand-mark i:last-child { right: 1px; bottom: 5px; background: #fff; }
.brand-mark.small { width: 24px; height: 24px; }
.brand-mark.small i { width: 14px; height: 6px; }
.main-nav { display: flex; align-items: center; gap: 34px; font-size: 13px; }
.main-nav a { opacity: .94; }
.main-nav a:hover { color: var(--blue); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 46px;
  padding: 0 23px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .01em;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(90deg, #0a76f8, #118dff); color: white; box-shadow: 0 10px 28px rgba(0, 119, 255, .24); }
.btn-outline { border: 1px solid #0876ff; color: #1c8cff; background: rgba(0,0,0,.08); }
.btn-dark { color: white; border: 1px solid #0d63c6; background: rgba(4, 17, 39, .65); }
.play { width: 20px; height: 20px; display: inline-grid; place-items: center; border: 1px solid var(--blue); border-radius: 50%; color: var(--blue); font-size: 8px; }

.hero {
  min-height: 562px;
  padding: 118px 0 48px;
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 70% 20%, rgba(0, 82, 181, .23), transparent 32%),
    radial-gradient(circle at 38% 100%, rgba(17, 97, 207, .16), transparent 26%),
    linear-gradient(135deg, #020817 0%, #03102a 56%, #020a1b 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,.22));
}
.hero-grid-overlay {
  position: absolute;
  right: -80px;
  top: 150px;
  width: 560px;
  height: 290px;
  opacity: .35;
  background-image: radial-gradient(circle, #0b6fe8 1.2px, transparent 1.2px);
  background-size: 17px 17px;
  mask-image: linear-gradient(90deg, transparent, #000 25%, #000 70%, transparent);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; position: relative; z-index: 2; }
.hero-copy h1 { margin: 0; font-size: clamp(48px, 4.3vw, 67px); line-height: .98; letter-spacing: -.055em; max-width: 650px; }
.hero-copy h1 span { color: #1477ef; }
.hero-copy > p { max-width: 600px; margin: 24px 0 28px; font-size: 17px; line-height: 1.55; color: #f3f5f9; }
.hero-actions { display: flex; gap: 16px; }
.hero-benefits { margin-top: 34px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 720px; }
.hero-benefits > div { display: flex; align-items: center; gap: 12px; }
.hero-benefits small { font-size: 13px; line-height: 1.5; color: #f0f3fa; }
.benefit-icon { width: 28px; height: 28px; flex: 0 0 auto; display: grid; place-items: center; color: #1386ff; border: 2px solid #1386ff; border-radius: 50%; font-size: 14px; font-weight: 700; }

.hero-visual { position: relative; min-height: 390px; }
.photo-frame { position: absolute; inset: 0 38px 0 0; border: 1px solid rgba(29, 129, 255, .6); border-radius: 18px; overflow: hidden; box-shadow: 0 22px 50px rgba(0,0,0,.3); }
.photo-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0, 18, 49, .25), transparent 45%, rgba(0, 13, 37, .1)); }
.photo-frame img { height: 100%; object-fit: cover; object-position: center; }
.photo-logo { position: absolute; z-index: 2; left: 50%; bottom: 54px; transform: translateX(-50%); display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.55); font-size: 24px; letter-spacing: .05em; }
.impact-card { position: absolute; z-index: 3; right: 0; bottom: 68px; width: 145px; height: 130px; padding: 24px 18px; border-radius: 15px; background: linear-gradient(145deg, #0b2248, #0b1832); box-shadow: 0 18px 40px rgba(0,0,0,.38); }
.code-icon { color: #147cff; font-weight: 800; font-size: 31px; margin-bottom: 14px; }
.impact-card strong { font-size: 12px; line-height: 1.5; }

.services { padding: 30px 0 28px; background: #fff; }
.section-heading { text-align: center; }
.section-heading span, .eyebrow, .stats-label { color: #0b76f7; text-transform: uppercase; font-weight: 800; font-size: 12px; letter-spacing: .14em; }
.section-heading h2 { margin: 9px 0 20px; font-size: 31px; letter-spacing: -.03em; }
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.service-card { min-height: 210px; padding: 26px 24px; text-align: center; border: 1px solid #dfe6ef; border-radius: 10px; box-shadow: 0 8px 25px rgba(20, 52, 100, .03); }
.service-icon { width: 54px; height: 54px; margin: 0 auto 18px; display: grid; place-items: center; border-radius: 12px; background: #eef5ff; color: #1178ef; font-size: 24px; font-weight: 800; }
.service-card h3 { margin: 0 0 10px; font-size: 15px; }
.service-card p { margin: 0; font-size: 13px; line-height: 1.65; color: #34415b; }

.stats { padding: 15px 0 28px; background: linear-gradient(180deg, #fff, #f7f9fd); }
.stats-label { text-align: center; margin-bottom: 12px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-grid div { text-align: center; padding: 4px 20px; border-right: 1px solid #dce3ed; }
.stats-grid div:last-child { border-right: 0; }
.stats-grid strong { display: block; font-size: 30px; letter-spacing: -.04em; }
.stats-grid span { font-size: 12px; color: #3d4960; }

.process { padding: 82px 0; background: #06132b; color: white; }
.process-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.process h2 { font-size: 38px; line-height: 1.15; margin: 15px 0 0; max-width: 520px; }
.process ol { list-style: none; padding: 0; margin: 0; }
.process li { display: grid; grid-template-columns: 70px 1fr; align-items: center; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.process li strong { color: var(--blue); font-size: 25px; }
.process li span { color: #d8deea; }

.contact { padding: 70px 0; background: #f6f8fc; }
.contact-box { display: flex; justify-content: space-between; align-items: center; gap: 40px; padding: 50px; border-radius: 20px; background: white; box-shadow: 0 20px 60px rgba(31, 63, 110, .08); }
.contact h2 { margin: 10px 0; font-size: 34px; }
.contact p { color: #56627a; margin: 0; }
footer { background: #020817; color: #aab5c7; padding: 24px 0; font-size: 12px; }
.footer-wrap { display: flex; justify-content: space-between; }

@media (max-width: 1100px) {
  .main-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 420px; }
  .hero { padding-top: 110px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--container)); }
  .nav-cta { display: none; }
  .brand-name { font-size: 20px; }
  .hero { padding-top: 100px; }
  .hero-copy h1 { font-size: 44px; }
  .hero-copy > p { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-benefits { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { min-height: 330px; }
  .photo-frame { right: 0; }
  .impact-card { right: 10px; bottom: 30px; transform: scale(.85); transform-origin: right bottom; }
  .cards-grid, .stats-grid, .process-grid { grid-template-columns: 1fr; }
  .stats-grid div { border-right: 0; border-bottom: 1px solid #dce3ed; padding: 14px; }
  .stats-grid div:last-child { border-bottom: 0; }
  .contact-box { flex-direction: column; align-items: flex-start; padding: 30px; }
  .footer-wrap { flex-direction: column; gap: 8px; }
}
