:root {
  --bg: #070a10;
  --bg-soft: #0c111b;
  --card: #111827;
  --card-2: #0e1522;
  --text: #f5f7fb;
  --muted: #9ca8ba;
  --line: rgba(255,255,255,.09);
  --accent: #6c7cff;
  --accent-2: #37d8c8;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 15% -10%, rgba(108,124,255,.13), transparent 31rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7,10,16,.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 750;
  letter-spacing: -.02em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 20px;
}

.brand-name { white-space: nowrap; }

.main-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  color: var(--muted);
  font-size: 14px;
}

.main-nav a:hover { color: var(--text); }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #5167ff);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(82,103,255,.24);
}

.button:hover { transform: translateY(-1px); }
.button-small { min-height: 42px; padding-inline: 17px; font-size: 14px; }

.button-secondary {
  background: transparent;
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 95px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .13em;
}

h1, h2, h3 { margin-top: 0; line-height: 1.12; letter-spacing: -.035em; }
h1 { max-width: 780px; font-size: clamp(44px, 6vw, 76px); margin-bottom: 25px; }
h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 20px; }
h3 { font-size: 21px; margin-bottom: 12px; }

.hero-text, .section-heading > p, .contact-copy > p {
  color: var(--muted);
  font-size: 18px;
  max-width: 710px;
}

.hero-actions { display: flex; gap: 12px; margin-top: 34px; }

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 13px;
}

.hero-points span::before {
  content: "•";
  margin-right: 8px;
  color: var(--accent-2);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-glow-one {
  width: 420px;
  height: 420px;
  background: rgba(108,124,255,.13);
  right: 4%;
  top: 4%;
}
.hero-glow-two {
  width: 260px;
  height: 260px;
  background: rgba(55,216,200,.08);
  left: 32%;
  bottom: 2%;
}

.system-card {
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(17,24,39,.96), rgba(10,15,25,.96));
  box-shadow: 0 30px 80px rgba(0,0,0,.38);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
}

.system-card-top {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 17px;
  border-bottom: 1px solid var(--line);
}

.window-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
}

.system-title { margin-left: 8px; color: var(--muted); font-size: 12px; }
.system-card-body { padding: 23px; }

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

.metric {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255,255,255,.025);
}

.metric span { display: block; color: var(--muted); font-size: 11px; }
.metric strong { display: block; margin-top: 8px; font-size: 24px; }

.chart {
  margin-top: 13px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 13px;
}

.chart-heading {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
}

.bars {
  height: 150px;
  display: flex;
  align-items: end;
  gap: 9px;
  margin-top: 20px;
}

.bars span {
  flex: 1;
  min-height: 12px;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
}

.activity-list {
  display: grid;
  gap: 11px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
}

.activity-list div {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
}

.status {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--accent-2);
}

.section { padding: 95px 0; border-top: 1px solid var(--line); }
.section-alt { background: var(--bg-soft); }
.section-heading { max-width: 780px; margin-bottom: 45px; }

.cards {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}

.service-card, .process-step {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
}

.service-card p, .process-step p, .feature-list p {
  color: var(--muted);
  margin-bottom: 0;
}

.service-number, .process-step span {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--accent-2);
  font-weight: 800;
  font-size: 13px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.feature-list { display: grid; gap: 22px; }
.feature-list > div {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}

.contact-section { background: linear-gradient(180deg, var(--bg-soft), var(--bg)); }
.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 75px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 35px;
}

.contact-details a {
  font-size: 21px;
  font-weight: 750;
}

address { color: var(--muted); font-style: normal; }

.contact-form {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card-2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field { margin-bottom: 17px; }
.field label {
  display: block;
  margin-bottom: 7px;
  color: #d6dce7;
  font-size: 13px;
  font-weight: 700;
}

input, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  background: #0a0f18;
  color: var(--text);
  padding: 13px 14px;
  outline: none;
}

input:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(108,124,255,.13);
}

textarea { resize: vertical; }

.consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 4px 0 20px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.consent input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.consent a { color: #b9c3ff; text-decoration: underline; }
.form-button { width: 100%; }
.form-note { color: var(--muted); font-size: 11px; text-align: center; margin-bottom: 0; }
.honeypot { position: absolute !important; left: -10000px !important; }

.site-footer {
  padding: 60px 0 26px;
  border-top: 1px solid var(--line);
  background: #05070b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-grid > div { display: flex; flex-direction: column; gap: 9px; }
.footer-grid p, .footer-grid span, .footer-grid a { color: var(--muted); }
.footer-grid strong { margin-bottom: 5px; }
.footer-brand { color: var(--text); }

.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.legal-page { padding: 80px 0; }
.legal-content { max-width: 850px; }
.legal-content h1 { font-size: clamp(38px,5vw,60px); }
.legal-content h2 { margin-top: 40px; font-size: 25px; }
.legal-content p, .legal-content li { color: var(--muted); }
.updated { color: var(--muted); margin-bottom: 40px; }

.notice {
  margin: 80px auto;
  max-width: 680px;
  padding: 35px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
}

@media (max-width: 980px) {
  .hero-grid, .contact-grid, .split { grid-template-columns: 1fr; }
  .system-card { transform: none; max-width: 680px; }
  .cards, .process-grid { grid-template-columns: repeat(2,1fr); }
  .main-nav { display: none; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .site-header .button-small { display: none; }
  .header-inner { min-height: 66px; }
  .hero { padding: 75px 0 70px; }
  h1 { font-size: 44px; }
  .hero-actions { flex-direction: column; }
  .cards, .process-grid, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .metric-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .contact-form { padding: 21px; }
}
