:root {
  color-scheme: dark;
  --ink: #edf5ee;
  --muted: #91a397;
  --line: #29362d;
  --panel: #151d18;
  --green: #8ee3a7;
  --green-bright: #b8f5c8;
  --background: #0d120f;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 72% 18%, rgb(71 151 95 / 12%), transparent 27rem),
    linear-gradient(rgb(255 255 255 / 2%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 2%) 1px, transparent 1px),
    var(--background);
  background-size: auto, 48px 48px, 48px 48px, auto;
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

a { color: inherit; }

.nav,
main,
footer {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font: 650 17px/1 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-decoration: none;
  letter-spacing: -.02em;
}

.brand-mark {
  width: 28px;
  height: 28px;
  padding: 6px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  border: 1px solid #45614d;
  border-radius: 7px;
}

.brand-mark i { width: 3px; background: var(--green); border-radius: 3px; }
.brand-mark i:nth-child(1) { height: 6px; }
.brand-mark i:nth-child(2) { height: 14px; }
.brand-mark i:nth-child(3) { height: 10px; }

.nav-link {
  color: var(--muted);
  font-size: 12px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.nav-link:hover { color: var(--ink); }

.hero { padding: 112px 0 72px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--green);
}

h1 {
  margin: 28px 0 24px;
  max-width: 900px;
  font: 700 clamp(54px, 8vw, 104px)/.92 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -.065em;
}

h1 em { color: var(--green); font-style: normal; }

.lede {
  max-width: 700px;
  color: var(--muted);
  font: 400 clamp(16px, 2vw, 20px)/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.actions { margin-top: 38px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.button {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 16px 20px;
  background: var(--green-bright);
  color: #102116;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 38px rgb(77 191 108 / 16%);
}

.button:hover { background: #d0f9da; transform: translateY(-1px); }
.requirement { color: #67786c; font-size: 11px; }

.terminal {
  overflow: hidden;
  border: 1px solid #34453a;
  border-radius: 12px;
  background: rgb(17 24 19 / 88%);
  box-shadow: 0 36px 90px rgb(0 0 0 / 35%);
}

.terminal-bar,
.service { display: grid; align-items: center; }

.terminal-bar {
  grid-template-columns: 1fr auto 1fr;
  min-height: 48px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  color: #718176;
  font-size: 9px;
  letter-spacing: .12em;
}

.lights { display: flex; gap: 6px; }
.lights i { width: 7px; height: 7px; border-radius: 50%; background: #3b4840; }
.live { justify-self: end; color: var(--green); }
.live i { display: inline-block; width: 5px; height: 5px; margin-right: 5px; border-radius: 50%; background: var(--green); }

.service {
  grid-template-columns: minmax(220px, 2fr) repeat(4, minmax(80px, 1fr));
  min-height: 65px;
  padding: 0 24px;
  border-bottom: 1px solid #202b24;
  color: #899a8e;
  font-size: 12px;
}

.service:last-child { border: 0; }
.service strong { color: var(--ink); font-weight: 500; }
.service.heading { min-height: 36px; color: #58675d; font-size: 9px; letter-spacing: .1em; }
.status { display: inline-block; width: 6px; height: 6px; margin-right: 12px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px rgb(142 227 167 / 55%); }

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 96px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.features article { padding: 38px 32px 42px 0; }
.features article + article { padding-left: 32px; border-left: 1px solid var(--line); }
.features b { color: var(--green); font-size: 10px; font-weight: 500; }
.features h2 { margin: 22px 0 12px; font: 650 20px/1.2 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; letter-spacing: -.025em; }
.features p { margin: 0; color: var(--muted); font: 400 14px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }

footer {
  min-height: 100px;
  display: flex;
  justify-content: space-between;
  color: #647168;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .nav, main, footer { width: min(100% - 28px, 1120px); }
  .hero { padding-top: 76px; }
  h1 { font-size: clamp(48px, 16vw, 72px); }
  .terminal { overflow-x: auto; }
  .terminal-bar, .service { min-width: 680px; }
  .features { grid-template-columns: 1fr; }
  .features article, .features article + article { padding: 30px 0; border-left: 0; }
  .features article + article { border-top: 1px solid var(--line); }
  footer { gap: 24px; flex-direction: column; justify-content: flex-start; }
}

@media (prefers-reduced-motion: no-preference) {
  .button { transition: transform 160ms ease, background 160ms ease; }
}
