:root {
  --bg: #06101d;
  --bg-soft: #0a192b;
  --card: rgba(12, 31, 52, .72);
  --line: rgba(151, 185, 221, .15);
  --text: #f4f7fb;
  --muted: #9caec2;
  --blue: #66b5ff;
  --blue-deep: #2e72bd;
  --purple: #8c7cff;
  --shadow: 0 30px 90px rgba(0, 0, 0, .38);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 70% 5%, rgba(59, 115, 184, .16), transparent 28rem),
    linear-gradient(145deg, #030913 0%, var(--bg) 50%, #071626 100%);
  font-family: Inter, system-ui, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image: radial-gradient(rgba(255,255,255,.22) .7px, transparent .7px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, black, transparent 65%);
}

.page-glow {
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: .12;
}
.glow-one { background: #4b9bea; top: 18%; left: -16rem; }
.glow-two { background: #7668ff; bottom: -14rem; right: -8rem; }

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

.site-header {
  padding: 30px 0;
}

.brand {
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
}

.brand strong {
  display: block;
  font-size: 17px;
  letter-spacing: .08em;
}

.brand small {
  color: var(--muted);
  display: block;
  margin-top: 3px;
  font-size: 10px;
  letter-spacing: .08em;
}

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 70px;
  padding: 60px 0 100px;
}

.status-pill {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(102,181,255,.22);
  background: rgba(102,181,255,.07);
  color: #a9d5ff;
  padding: 9px 13px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.status-dot,
.live-dot::before {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background: #6bc0ff;
  box-shadow: 0 0 14px #6bc0ff;
}

.eyebrow {
  margin: 28px 0 12px;
  color: #7dbbf3;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(48px, 6vw, 80px);
  line-height: .98;
  letter-spacing: -.055em;
}

h1 span,
.section-heading h2 span {
  display: block;
  background: linear-gradient(100deg, #66b5ff, #8c7cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.intro {
  max-width: 580px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin: 27px 0 30px;
}

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

.btn {
  border: 0;
  border-radius: 12px;
  padding: 14px 19px;
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: .25s ease;
}

.btn span { margin-left: 10px; }

.btn-primary {
  background: linear-gradient(135deg, #55a9ef, #456fd0);
  box-shadow: 0 15px 30px rgba(55, 125, 202, .22);
}

.btn-primary:hover { transform: translateY(-2px); }

.btn-ghost {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
}

.btn-ghost:hover { background: rgba(255,255,255,.08); }

.trust-row {
  margin-top: 46px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #6f8297;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
}

.trust-row i {
  width: 3px;
  height: 3px;
  background: #50708e;
  border-radius: 50%;
}

.construction-card {
  padding: 20px;
  border: 1px solid rgba(126,171,215,.18);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(20,49,78,.72), rgba(6,20,35,.78));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.construction-card::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(78,144,211,.13);
  filter: blur(40px);
  right: -80px;
  top: -80px;
}

.card-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  color: #728aa3;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  padding: 0 4px 14px;
}

.live-dot {
  color: #8bc9ff;
  display: flex;
  align-items: center;
  gap: 7px;
}

.browser-window {
  position: relative;
  border: 1px solid rgba(152,188,224,.2);
  border-radius: 16px;
  overflow: hidden;
  background: #071221;
}

.browser-bar {
  height: 39px;
  background: #0d2034;
  display: flex;
  align-items: center;
  padding: 0 13px;
  gap: 5px;
}

.browser-bar > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #45637e;
}

.browser-url {
  margin: auto;
  width: 50%;
  padding: 6px 12px;
  text-align: center;
  color: #54708b;
  border-radius: 7px;
  background: rgba(255,255,255,.035);
  font-size: 8px;
}

.screen {
  min-height: 315px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 35px;
  background:
    radial-gradient(circle at 50% 25%, rgba(68,136,200,.14), transparent 45%),
    #071322;
}

.screen-logo img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  border-radius: 50%;
  opacity: .95;
  margin-bottom: 20px;
}

.screen-lines {
  width: 220px;
  display: grid;
  gap: 7px;
  margin-bottom: 25px;
}
.screen-lines span {
  height: 5px;
  border-radius: 10px;
  background: #18334e;
}
.screen-lines span:nth-child(1) { width: 100%; }
.screen-lines span:nth-child(2) { width: 70%; margin-inline: auto; }
.screen-lines span:nth-child(3) { width: 45%; margin-inline: auto; }

.progress-wrap { width: min(360px, 100%); }

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 9px;
  color: #7f96ad;
  font-size: 9px;
}

.progress-label strong { color: #78bdff; }

.progress {
  height: 6px;
  background: #122a43;
  border-radius: 10px;
  overflow: hidden;
}

.progress > span {
  display: block;
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #4c9fe9, #8c7cff);
  box-shadow: 0 0 18px rgba(102,181,255,.45);
  transition: width 1.5s ease;
}

.screen-spark {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #75bcff;
  box-shadow: 0 0 15px #75bcff;
  opacity: .7;
}
.spark-one { top: 35%; left: 18%; }
.spark-two { bottom: 25%; right: 20%; }

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

.tool-card {
  border: 1px solid rgba(147,184,218,.1);
  border-radius: 12px;
  padding: 14px;
  background: rgba(255,255,255,.025);
}

.tool-icon {
  color: #6eb9fb;
  display: block;
  font-size: 17px;
  margin-bottom: 10px;
}

.tool-card strong {
  display: block;
  font-size: 10px;
}

.tool-card small {
  display: block;
  color: #61768b;
  margin-top: 5px;
  font-size: 8px;
}

.services {
  padding: 50px 0 110px;
  border-top: 1px solid var(--line);
}

.section-heading h2,
.contact-strip h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.section-heading h2 span {
  display: inline;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 45px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.service {
  min-height: 200px;
  padding: 27px;
  border-right: 1px solid var(--line);
  background: rgba(255,255,255,.018);
  transition: .25s ease;
}

.service:last-child { border-right: 0; }
.service:hover { background: rgba(102,181,255,.04); }

.service-number {
  color: #55758f;
  font-size: 10px;
  font-weight: 800;
  margin-bottom: 55px;
}

.service h3 {
  font-size: 15px;
  margin: 0 0 10px;
}

.service p {
  color: #71869b;
  font-size: 11px;
  line-height: 1.65;
  margin: 0;
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 45px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-strip .eyebrow { margin: 0 0 10px; }
.contact-strip h2 { font-size: clamp(25px, 3vw, 36px); }

.contact-link {
  white-space: nowrap;
  color: #8bc8ff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}
.contact-link span { margin-left: 10px; }

footer {
  min-height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #52677c;
  font-size: 10px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 27px;
  height: 27px;
  object-fit: contain;
  border-radius: 50%;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-top: 35px;
  }
  .hero-copy { max-width: 700px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service:nth-child(2) { border-right: 0; }
  .service:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 620px) {
  .site-header, main, footer { width: min(100% - 30px, 1180px); }
  .site-header { padding: 20px 0; }
  .brand strong { font-size: 14px; }
  .brand small { font-size: 8px; }
  .brand img { width: 44px; height: 44px; }
  .hero { min-height: auto; padding: 45px 0 75px; }
  h1 { font-size: clamp(45px, 14vw, 68px); }
  .intro { font-size: 14px; }
  .trust-row { gap: 8px; font-size: 8px; }
  .construction-card { padding: 13px; border-radius: 20px; }
  .screen { min-height: 270px; padding: 25px; }
  .tools { grid-template-columns: 1fr; }
  .tool-card { display: grid; grid-template-columns: 30px 1fr; align-items: center; column-gap: 8px; }
  .tool-icon { grid-row: span 2; margin: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service, .service:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .service:last-child { border-bottom: 0; }
  .service-number { margin-bottom: 35px; }
  .contact-strip { align-items: flex-start; flex-direction: column; }
  .contact-link { white-space: normal; }
  footer { flex-direction: column; align-items: flex-start; justify-content: center; gap: 8px; padding: 25px 0; }
}
