:root {
  --bg: #070a10;
  --panel: #0f1521;
  --panel-2: #141d2b;
  --text: #f5f8ff;
  --muted: #94a3b8;
  --line: rgba(255,255,255,.12);
  --cyan: #ff8a1f;
  --blue: #2f7dff;
  --green: #56d4ff;
  --orange: #ff8a1f;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(255,138,31,.18), transparent 30%),
    radial-gradient(circle at 88% 14%, rgba(47,125,255,.16), transparent 34%),
    linear-gradient(180deg, #08090d 0%, #0c1018 48%, #06070a 100%);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 76px;
  padding: 0 clamp(18px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(7, 10, 16, .82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #041312;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 16px 45px rgba(255, 138, 31, .22);
  letter-spacing: -.04em;
}

.brand-text {
  font-size: 21px;
  letter-spacing: -.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a,
.nav-cta {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  padding: 10px 12px;
  border-radius: 999px;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,.07);
}

.nav-cta {
  color: #061016;
  background: var(--cyan);
  box-shadow: 0 14px 35px rgba(255, 138, 31, .18);
}

.hero {
  min-height: calc(100vh - 76px);
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 64px) 54px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,138,31,.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(47,125,255,.08) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.5), transparent 72%);
  pointer-events: none;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 900;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(48px, 7vw, 96px);
  line-height: .92;
  letter-spacing: -.065em;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 30px;
}

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

.button {
  min-height: 52px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 24px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  color: #041312;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 18px 46px rgba(255, 138, 31, .22);
}

.button.ghost {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 650px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-row div {
  padding: 20px 18px;
  border-right: 1px solid var(--line);
}

.proof-row div:last-child { border-right: 0; }
.proof-row strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}
.proof-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  min-height: 620px;
  display: grid;
  place-items: center;
}

.dashboard-shell {
  width: min(100%, 720px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  box-shadow: 0 34px 120px rgba(0,0,0,.42);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-7deg) rotateX(4deg);
}

.dash-top {
  height: 62px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 8, 13, .7);
}

.dash-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--cyan);
}

.dash-top span:nth-child(2) { background: var(--blue); }
.dash-top span:nth-child(3) { background: var(--green); }
.dash-top small {
  margin-left: auto;
  color: var(--muted);
  font-weight: 800;
}

.dash-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
  padding: 16px;
  background: #090d15;
}

.dash-panel {
  min-height: 170px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 18px;
  background: rgba(20, 29, 43, .92);
}

.dash-panel.wide { grid-column: span 1; }

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-weight: 900;
  font-size: 13px;
}

.panel-head b {
  color: var(--cyan);
  font-size: 12px;
}

.metric-line strong {
  display: block;
  margin-top: 18px;
  font-size: 58px;
  line-height: .95;
  letter-spacing: -.06em;
}

.metric-line span { color: var(--muted); }

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

.bars i {
  flex: 1;
  border-radius: 999px 999px 5px 5px;
  background: linear-gradient(180deg, var(--cyan), rgba(47,125,255,.72));
}

.ring {
  height: 110px;
  width: 110px;
  margin: 22px auto 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, var(--panel-2) 54%, transparent 55%),
    conic-gradient(var(--cyan), var(--blue), var(--green), var(--cyan));
  font-weight: 900;
}

.mini-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  color: var(--text);
  font-weight: 800;
}

.mini-list span {
  width: 9px;
  height: 9px;
  display: inline-block;
  border-radius: 50%;
  margin-right: 8px;
  background: var(--cyan);
}

.code pre {
  margin: 20px 0 0;
  color: #b8f6ef;
  font-size: 16px;
  line-height: 1.55;
}

.section {
  padding: clamp(70px, 9vw, 118px) clamp(18px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
}

.section-title {
  max-width: 820px;
  margin-bottom: 30px;
}

.section-title.center {
  text-align: center;
  margin-inline: auto;
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -.05em;
}

.section-copy,
.section-title p,
.contact-card p {
  color: var(--muted);
  font-size: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.feature-row,
.timeline > div,
.contact-card {
  border: 1px solid var(--line);
  background: rgba(15, 21, 33, .78);
}

.service-card {
  min-height: 270px;
  border-radius: 22px;
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -70px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,138,31,.14), rgba(47,125,255,.08) 58%, transparent 70%);
  pointer-events: none;
}

.service-card .icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #041312;
  background: var(--cyan);
  font-weight: 900;
  margin-bottom: 28px;
}

.service-card h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.service-card p,
.feature-row span,
.timeline p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(32px, 7vw, 88px);
  align-items: center;
}

.feature-stack {
  display: grid;
  gap: 12px;
}

.feature-row {
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.feature-row b {
  min-width: 220px;
  font-size: 18px;
}

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

.timeline > div {
  border-radius: 18px;
  padding: 22px;
}

.timeline strong {
  color: var(--cyan);
  display: block;
  margin-bottom: 34px;
}

.timeline h3 {
  font-size: 23px;
  margin-bottom: 10px;
}

.contact-card {
  max-width: 1120px;
  margin: 0 auto;
  border-radius: 26px;
  padding: clamp(24px, 5vw, 46px);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 6vw, 70px);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 138, 31, .14), transparent 34%),
    radial-gradient(circle at 86% 76%, rgba(47, 125, 255, .12), transparent 38%),
    rgba(15, 21, 33, .78);
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-links a {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 15px;
  background: rgba(255,255,255,.045);
  color: var(--text);
  font-weight: 900;
}

.contact-links a:hover {
  border-color: rgba(255, 138, 31, .55);
  background: rgba(255, 138, 31, .08);
}

.contact-links span {
  display: block;
  margin-bottom: 2px;
  color: var(--orange);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.contact-form {
  display: grid;
  gap: 14px;
}

label {
  color: var(--text);
  font-weight: 900;
  display: grid;
  gap: 8px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 15px;
  background: rgba(0,0,0,.25);
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.site-footer {
  padding: 28px clamp(18px, 5vw, 64px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-weight: 800;
}

.site-footer a {
  color: var(--cyan);
}

@media (max-width: 1000px) {
  .nav-links { display: none; }
  .hero,
  .split-section,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-visual { min-height: auto; }
  .dashboard-shell { transform: none; }
  .service-grid,
  .timeline {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 70px;
  }

  .nav-cta { display: none; }
  .proof-row,
  .service-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .proof-row div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-row div:last-child { border-bottom: 0; }
  .dash-grid { grid-template-columns: 1fr; }
  .feature-row {
    align-items: flex-start;
    flex-direction: column;
  }
}
