:root {
  --bg: #080d0c;
  --panel: #0d1413;
  --panel-2: #101917;
  --text: #d7dedb;
  --muted: #94a39e;
  --faint: #5d6d68;
  --green: #31f58b;
  --green-soft: rgba(49, 245, 139, 0.13);
  --line: rgba(255, 255, 255, 0.08);
  --glow: rgba(49, 245, 139, 0.28);
  --shadow: rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(49, 245, 139, 0.11), transparent 35%),
    radial-gradient(circle at 85% 8%, rgba(70, 120, 255, 0.09), transparent 36%),
    linear-gradient(180deg, #060908 0%, var(--bg) 100%);
  line-height: 1.62;
}

.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 100% 4px;
  opacity: 0.45;
  mix-blend-mode: overlay;
}

.terminal-wrap {
  width: min(1080px, calc(100% - 28px));
  margin: 34px auto;
}

.terminal-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(13,20,19,0.95), rgba(8,13,12,0.96));
  box-shadow: 0 24px 90px var(--shadow), 0 0 58px rgba(49,245,139,0.05);
  overflow: hidden;
}

.topbar {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.025);
}
.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--faint);
  display: inline-block;
}
.dot:first-child { background: #ff5f57; }
.dot:nth-child(2) { background: #ffbd2e; }
.dot:nth-child(3) { background: #28c840; }
.path {
  margin-left: 12px;
  color: var(--muted);
  font-size: 13px;
}

.block {
  padding: 30px clamp(22px, 5vw, 56px);
  border-bottom: 1px solid var(--line);
}
.block:last-child { border-bottom: 0; }
.prompt {
  margin: 0 0 14px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: lowercase;
  text-shadow: 0 0 18px var(--glow);
}
.hash { color: var(--muted); }

.hero-prompt { text-transform: none; }
.hero { padding-top: 48px; }
h1 {
  font-size: clamp(42px, 8vw, 86px);
  line-height: 0.94;
  letter-spacing: -0.08em;
  margin: 0 0 18px;
  color: #f5fff9;
  text-shadow: 0 0 30px rgba(49,245,139,0.12);
}
.role {
  max-width: 900px;
  color: var(--text);
  font-size: clamp(16px, 2vw, 22px);
  margin: 0 0 10px;
}
.location {
  max-width: 800px;
  color: var(--muted);
  margin: 0 0 24px;
}
.meta-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.meta-stack p { margin: 0; }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn {
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.025);
  padding: 11px 14px;
  border-radius: 12px;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(49,245,139,.55);
  background: var(--green-soft);
}
.btn.primary {
  color: #06100c;
  background: var(--green);
  border-color: var(--green);
  font-weight: 800;
}

p { margin: 0 0 14px; color: var(--text); }
ul { margin: 0; padding-left: 21px; color: var(--text); }
li { margin: 7px 0; }
li::marker { color: var(--green); }
.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.grid > div {
  background: rgba(255,255,255,0.022);
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 22px;
}

.signal-list { display: grid; gap: 12px; }
.signal {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
}
.signal span {
  color: var(--green);
  font-weight: 900;
}
.signal p { margin: 0; }

.quote-block blockquote {
  margin: 0;
  padding: 22px;
  border-left: 3px solid var(--green);
  background: var(--green-soft);
  color: #e9fff2;
  border-radius: 0 14px 14px 0;
}
.small-note { color: var(--muted); font-size: 13px; margin-top: 18px; }
.footer-cta {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.55;
}

@media (max-width: 760px) {
  .terminal-wrap { width: min(100% - 18px, 1080px); margin: 9px auto; }
  .terminal-card { border-radius: 12px; }
  .grid { grid-template-columns: 1fr; }
  .block { padding: 24px 18px; }
  .hero { padding-top: 32px; }
  h1 { letter-spacing: -0.06em; }
  .path { display: none; }
}
