:root {
  --bg: #0b0f17;
  --panel: #161b22;
  --sky: #238ad3;
  --orange: #f59b24;
  --text: #c9d1d9;
  --text-bright: #ffffff;
  --muted: #8b949e;
  --border: rgba(48, 54, 61, 0.7);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.shell { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

header.top {
  height: 72px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(11, 15, 23, 0.8);
  backdrop-filter: blur(8px);
  z-index: 100;
}

.nav { width: 100%; display: flex; justify-content: space-between; align-items: center; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text-bright); }
.brand img { height: 32px; }
.brand span { font-size: 18px; font-weight: 600; display: flex; flex-direction: column; line-height: 1.1; }
.brand b { color: var(--sky); }
.brand small { font-size: 10px; font-weight: 400; color: var(--muted); }

.links { display: flex; gap: 24px; align-items: center; }
.links a { text-decoration: none; color: var(--text); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.links a:hover { color: var(--sky); }
.links a.discord {
  background: var(--sky);
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
}

section { padding: 80px 0; }
.hero { position: relative; overflow: hidden; padding: 120px 0; }
.hero-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }

h1 { font-size: 48px; line-height: 1.1; margin-bottom: 24px; color: var(--text-bright); }
p.intro { font-size: 18px; color: var(--muted); margin-bottom: 32px; max-width: 600px; }

.btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}
.btn.primary { background: var(--sky); color: #fff; }
.btn.ghost { border: 1px solid var(--border); color: var(--text-bright); margin-left: 12px; }
.btn:hover { transform: translateY(-2px); }

.terminal-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.window-bar { background: #21262d; padding: 12px; display: flex; gap: 6px; }
.window-bar i { width: 10px; height: 10px; border-radius: 50%; background: #30363d; }
.terminal { padding: 20px; font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace; font-size: 13px; color: #d1d5db; }
.terminal .cmd { color: var(--sky); }
.terminal .ok { color: #3fb950; }

.copy-row { background: #21262d; padding: 12px 20px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; }
.copy-btn { background: var(--sky); border: none; color: #fff; padding: 4px 12px; border-radius: 4px; cursor: pointer; }

.eyebrow { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; color: var(--sky); }
.dot { width: 6px; height: 6px; background: var(--sky); border-radius: 50%; }

.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { background: var(--panel); border: 1px solid var(--border); border-radius: 12px; padding: 32px; transition: border-color 0.2s; text-decoration: none; color: inherit; }
.card:hover { border-color: var(--sky); }
.feature-icon { width: 40px; height: 40px; background: rgba(35, 138, 211, 0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--sky); font-weight: 700; margin-bottom: 20px; }

.footer { padding: 40px 0; border-top: 1px solid var(--border); display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); }
.footer a { color: var(--muted); text-decoration: none; margin-left: 12px; }
.footer a:hover { color: var(--text-bright); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .actions { justify-content: center; }
  .grid3 { grid-template-columns: 1fr; }
}
