:root {
  --bg: #090b0f;
  --panel: #11151b;
  --panel-2: #151b23;
  --line: #252d38;
  --text: #f3f7fb;
  --muted: #97a2b1;
  --accent: #8dff4f;
  --accent-soft: rgba(141,255,79,.12);
  --blue: #61a7ff;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
  z-index: -2;
}
.noise {
  position: fixed;
  inset: 0;
  opacity: .03;
  pointer-events: none;
  z-index: -1;
  background-image: radial-gradient(circle at center, #fff 0 1px, transparent 1px);
  background-size: 5px 5px;
}
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(9,11,15,.88);
  backdrop-filter: blur(16px);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font: 700 14px "Space Grotesk", sans-serif;
  letter-spacing: .08em;
}
.logo-box {
  padding: 8px 10px;
  background: var(--accent);
  color: #081006;
  border-radius: 7px;
  letter-spacing: -.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  color: #c7d0dc;
}
.nav-links a:hover { color: var(--text); }
.nav-button {
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: 8px;
  background: #12171e;
}
.menu-btn {
  display: none;
  background: none;
  border: 0;
  width: 42px;
}
.menu-btn span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 6px 0;
}

.hero { padding: 110px 0 0; }
.hero-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 80px;
  align-items: center;
}
.signal-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #aab5c2;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 26px;
}
.signal-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent);
}
.hero h1, .section-top h2, .process-intro h2, .company-title h2, .contact h2 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -.055em;
  line-height: .98;
  margin: 0;
}
.hero h1 { font-size: clamp(58px, 7vw, 102px); max-width: 900px; }
.hero-text {
  color: var(--muted);
  max-width: 680px;
  font-size: 19px;
  margin: 32px 0;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.primary-btn, .secondary-btn {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  font-weight: 700;
}
.primary-btn { background: var(--accent); color: #081006; }
.secondary-btn { border: 1px solid var(--line); background: var(--panel); }

.hero-console {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #121720, #0d1117);
  box-shadow: 0 28px 70px rgba(0,0,0,.35);
}
.console-header, .console-footer {
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  font: 600 12px "Space Grotesk", sans-serif;
  letter-spacing: .08em;
}
.console-header { border-bottom: 1px solid var(--line); }
.online { color: var(--accent); }
.console-body { padding: 8px 18px; }
.console-line {
  display: grid;
  grid-template-columns: 44px 1fr;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.console-line:last-child { border-bottom: 0; }
.console-line > span { color: #5e6a78; font-size: 12px; }
.console-line small { display: block; color: var(--muted); margin-bottom: 3px; }
.console-line strong { font-family: "Space Grotesk"; font-size: 20px; }
.console-chart {
  height: 150px;
  padding: 20px 18px;
  display: flex;
  gap: 10px;
  align-items: flex-end;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.bar {
  flex: 1;
  background: linear-gradient(180deg, var(--accent), #348b2a);
  border-radius: 4px 4px 0 0;
}
.b1{height:28%}.b2{height:48%}.b3{height:38%}.b4{height:72%}.b5{height:56%}.b6{height:82%}.b7{height:100%}
.console-footer { color: var(--muted); }
.console-footer span:last-child { color: var(--text); }

.ticker {
  margin-top: 100px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  color: #657180;
  font: 600 12px "Space Grotesk";
  letter-spacing: .13em;
}

.expertise { padding: 120px 0; }
.section-top {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  margin-bottom: 70px;
}
.section-code { color: var(--accent); font: 600 13px "Space Grotesk"; }
.eyebrow {
  margin: 0 0 14px;
  color: #758191;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 700;
}
.section-top h2, .process-intro h2, .company-title h2, .contact h2 {
  font-size: clamp(42px, 5vw, 72px);
  max-width: 850px;
}
.expertise-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
}
.expert-card {
  min-height: 320px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 16px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}
.expert-card::after {
  content: "";
  position: absolute;
  width: 180px; height: 180px;
  right: -70px; top: -70px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
}
.card-number { color: var(--accent); font-size: 12px; margin-bottom: 70px; }
.expert-card h3 {
  font: 600 30px "Space Grotesk";
  letter-spacing: -.03em;
  margin: 0 0 12px;
}
.expert-card p { color: var(--muted); max-width: 640px; }
.card-meta {
  margin-top: 32px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.card-meta span, .support-list span {
  border: 1px solid var(--line);
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 12px;
  color: #a9b4c1;
}
.mini-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 8px;
}
.mini-grid span {
  padding: 14px;
  background: #0d1117;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 13px;
}
.expert-card.accent {
  background: var(--accent);
  color: #071006;
}
.expert-card.accent .card-number,
.expert-card.accent p { color: rgba(7,16,6,.65); }
.progress-line {
  height: 8px;
  margin-top: 42px;
  background: rgba(7,16,6,.18);
  border-radius: 999px;
  overflow: hidden;
}
.progress-line span { display:block; width:82%; height:100%; background:#071006; }
.expert-card.wide { grid-column: 1 / -1; min-height: 260px; }
.wide-content {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 50px;
  align-items: end;
}
.support-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }

.process {
  padding: 120px 0;
  background: #0c1015;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
}
.process-intro > p:last-child { color: var(--muted); font-size: 18px; max-width: 480px; }
.process-stack { border-top: 1px solid var(--line); }
.process-stack article {
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.process-stack article > span { color: var(--accent); font-size: 12px; }
.process-stack h3 { margin: 0 0 6px; font: 600 23px "Space Grotesk"; }
.process-stack p { margin: 0; color: var(--muted); }

.metrics { padding: 26px 0; border-bottom: 1px solid var(--line); }
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.metrics-grid div {
  padding: 24px;
  border-right: 1px solid var(--line);
}
.metrics-grid div:last-child { border-right: 0; }
.metrics-grid strong {
  display: block;
  font: 600 28px "Space Grotesk";
  color: var(--accent);
}
.metrics-grid span { color: var(--muted); font-size: 13px; }

.company { padding: 120px 0; }
.company-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
}
.company-panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.company-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}
.company-row:last-child { border-bottom: 0; }
.company-row span { color: var(--muted); }
.company-row strong { font-weight: 600; }
.status-text { color: var(--accent); }

.contact { padding: 0 0 120px; }
.contact-box {
  padding: 60px;
  border-radius: 20px;
  background: linear-gradient(135deg, #17241c, #111820);
  border: 1px solid #2f4737;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
}
.contact-action { align-self: end; }
.contact-action p { color: var(--muted); }
.contact-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #42634b;
  font: 600 22px "Space Grotesk";
}
.contact-link span { color: var(--accent); }
.contact-action small { display: block; color: #6e7b88; margin-top: 12px; }

.footer {
  border-top: 1px solid var(--line);
  padding: 55px 0 24px;
  background: #07090c;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: start;
}
.footer-top p { color: var(--muted); max-width: 460px; margin: 0; }
.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #6f7a87;
  font-size: 13px;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border: 1px solid var(--line);
    background: #10151c;
    border-radius: 12px;
  }
  .nav-links.open { display: flex; }
  .menu-btn { display: block; }
  .hero-layout, .process-layout, .company-layout, .contact-box {
    grid-template-columns: 1fr;
  }
  .hero-layout, .process-layout, .company-layout { gap: 60px; }
  .expertise-grid { grid-template-columns: 1fr; }
  .expert-card.wide { grid-column: auto; }
  .wide-content { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: repeat(2,1fr); }
  .metrics-grid div:nth-child(2) { border-right: 0; }
  .metrics-grid div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .hero { padding-top: 70px; }
  .hero h1 { font-size: 50px; }
  .hero-text { font-size: 17px; }
  .ticker { grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 70px; }
  .expertise, .process, .company { padding: 85px 0; }
  .section-top { grid-template-columns: 1fr; }
  .section-code { margin-bottom: 8px; }
  .expert-card { padding: 24px; }
  .card-number { margin-bottom: 45px; }
  .company-row { grid-template-columns: 1fr; gap: 5px; }
  .contact-box { padding: 34px 24px; }
  .contact h2 { font-size: 40px; }
  .footer-top, .footer-bottom { flex-direction: column; }
}
