:root {
  color-scheme: dark;
  --bg: #06090d;
  --panel: #0d131b;
  --panel-soft: #101a24;
  --ink: #eef7f6;
  --muted: #95a6b8;
  --faint: #627184;
  --line: rgba(154, 188, 209, 0.16);
  --line-strong: rgba(50, 231, 159, 0.36);
  --green: #32e79f;
  --cyan: #4ad7f1;
  --violet: #9b7cff;
  --amber: #ffc857;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 18% 28%, rgba(50, 231, 159, 0.13), transparent 24rem),
    radial-gradient(circle at 82% 8%, rgba(155, 124, 255, 0.12), transparent 22rem),
    linear-gradient(180deg, #06090d 0%, #080b10 62%, #06090d 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

a {
  color: inherit;
}

.site-header {
  width: min(1180px, calc(100% - 40px));
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
}

.brand-mark {
  width: 15px;
  height: 15px;
  border: 3px solid var(--green);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(50, 231, 159, 0.62);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.86rem;
}

.nav-links a {
  text-decoration: none;
}

.nav-cta {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0 13px;
  color: var(--green);
  background: rgba(50, 231, 159, 0.06);
}

.hero,
.section,
.closing {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: 56px;
  align-items: center;
  padding: 38px 0 80px;
}

.status,
.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font: 850 0.76rem/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: 0;
  text-transform: uppercase;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 200, 87, 0.24);
  border-radius: 999px;
  padding: 8px 12px;
  color: #ffe2a2;
  background: rgba(255, 200, 87, 0.06);
}

.status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 18px rgba(255, 200, 87, 0.7);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(3.4rem, 8vw, 6.9rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h1::first-letter {
  color: var(--green);
}

h2 {
  max-width: 840px;
  margin-bottom: 28px;
  font-size: clamp(2.1rem, 4.6vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.06rem;
}

.lead {
  max-width: 720px;
  margin-bottom: 18px;
  color: #c9d7e1;
  font-size: clamp(1.08rem, 2vw, 1.38rem);
  line-height: 1.6;
}

.sublead,
.closing p,
.steps span,
.service-grid p {
  color: var(--muted);
  line-height: 1.58;
}

.sublead {
  max-width: 700px;
  margin-bottom: 34px;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 18px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  border-color: var(--line-strong);
  color: #dbffec;
  background: linear-gradient(135deg, rgba(50, 231, 159, 0.2), rgba(74, 215, 241, 0.1));
  box-shadow: 0 14px 38px rgba(0, 180, 111, 0.18);
}

.button.secondary {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
}

.field-card {
  min-height: 520px;
  position: relative;
  display: grid;
  align-content: end;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(50, 231, 159, 0.12), transparent 11rem),
    linear-gradient(150deg, rgba(17, 26, 38, 0.92), rgba(7, 10, 15, 0.94));
  box-shadow: var(--shadow);
}

.node-map {
  position: absolute;
  inset: 36px 28px 116px;
  border: 1px solid rgba(74, 215, 241, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
}

.node-map::before,
.node-map::after {
  content: "";
  position: absolute;
  inset: 22%;
  border: 1px solid rgba(50, 231, 159, 0.2);
  border-radius: 50%;
}

.node-map::after {
  inset: 34%;
  border-color: rgba(155, 124, 255, 0.22);
}

.node {
  position: absolute;
  min-width: 78px;
  min-height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 10, 15, 0.84);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.node.core {
  left: 50%;
  top: 45%;
  min-width: 94px;
  transform: translate(-50%, -50%);
  border-color: var(--line-strong);
  color: var(--green);
  box-shadow: 0 0 32px rgba(50, 231, 159, 0.2);
}

.n1 { left: 8%; top: 14%; }
.n2 { right: 8%; top: 18%; }
.n3 { left: 9%; bottom: 18%; }
.n4 { right: 10%; bottom: 16%; }
.n5 { left: 50%; top: 8%; transform: translateX(-50%); }
.n6 { left: 50%; bottom: 5%; transform: translateX(-50%); }

.field-caption {
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: rgba(6, 9, 13, 0.78);
  backdrop-filter: blur(14px);
}

.field-caption strong {
  display: block;
  margin-bottom: 8px;
}

.field-caption span {
  color: var(--faint);
  line-height: 1.48;
}

.ticker {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  background: rgba(8, 12, 18, 0.72);
}

.ticker span {
  flex: 0 0 auto;
  border-right: 1px solid var(--line);
  padding: 16px 28px;
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  padding: 104px 0;
}

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

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

.service-grid article {
  min-height: 245px;
}

.service-grid article,
.intent-grid article {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(16, 26, 36, 0.82), rgba(9, 13, 19, 0.86));
}

.service-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(74, 215, 241, 0.32);
  border-radius: 10px;
  margin-bottom: 44px;
  color: var(--cyan);
  font: 800 0.72rem/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  background: rgba(14, 22, 32, 0.72);
}

.steps b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--green);
  background: rgba(50, 231, 159, 0.08);
}

.search-intent,
.request-section,
.faq-section {
  border-top: 1px solid var(--line);
}

.request-grid,
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.request-grid article,
.faq-list article {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  background: rgba(14, 22, 32, 0.72);
}

.request-grid p,
.faq-list p,
.intent-grid p {
  color: var(--muted);
  line-height: 1.58;
}

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

.closing p {
  max-width: 760px;
  font-size: 1.05rem;
}

@media (max-width: 940px) {
  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .field-card {
    min-height: 430px;
  }

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

  .intent-grid {
    grid-template-columns: 1fr;
  }

  .request-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header,
  .hero,
  .section,
  .closing {
    width: min(100% - 28px, 520px);
  }

  .nav-links {
    display: none;
  }

  .hero {
    justify-items: start;
  }

  .hero-copy,
  .field-card {
    width: min(100%, 350px);
  }

  h1 {
    font-size: 2.5rem;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    min-width: 0;
    text-align: center;
    white-space: normal;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .field-card {
    min-height: 380px;
  }

  .node {
    min-width: 66px;
    font-size: 0.64rem;
  }
}
