/* ASTRA — hiring site stylesheet */

:root {
  --bg: #030406;
  --panel: rgba(14, 18, 30, 0.72);
  --panel-border: rgba(124, 140, 255, 0.16);
  --text: #e8ecf6;
  --muted: #9aa3b8;
  --accent: #7c8cff;
  --accent-strong: #a5b1ff;
  --font-head: "Space Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-family: var(--font-head); letter-spacing: -0.01em; }

a { color: var(--accent-strong); text-decoration: none; }
a:hover { color: #fff; }

/* ── Nav ─────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(3, 4, 6, 0.7);
  border-bottom: 1px solid rgba(124, 140, 255, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.brand {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.22em;
  color: var(--text);
}

.nav-links { display: flex; align-items: center; gap: 26px; }

.nav-links a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}
.nav-links a:hover { color: var(--text); }

.nav-links .cta {
  color: var(--bg);
  background: var(--accent);
  padding: 7px 18px;
  border-radius: 999px;
  font-weight: 600;
}
.nav-links .cta:hover { background: var(--accent-strong); color: var(--bg); }

/* ── Hero ────────────────────────────────────────────── */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-strong);
  border: 1px solid var(--panel-border);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 26px;
  background: rgba(124, 140, 255, 0.06);
}

.hero h1 {
  font-size: clamp(44px, 8vw, 80px);
  font-weight: 700;
  line-height: 1.06;
  margin-bottom: 24px;
}

.hl {
  background: linear-gradient(100deg, var(--accent) 0%, #c7b6ff 60%, #8fd0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  max-width: 620px;
  font-size: 19px;
  color: var(--muted);
  margin-bottom: 36px;
}

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  padding: 13px 28px;
  border-radius: 10px;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover { background: var(--accent-strong); color: var(--bg); }

.btn-ghost {
  border: 1px solid var(--panel-border);
  color: var(--text);
  background: rgba(14, 18, 30, 0.5);
}

.btn-lg { font-size: 18px; padding: 16px 34px; }

/* ── Sections ────────────────────────────────────────── */
.section { padding: 110px 0; }

.section-tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 700;
  margin-bottom: 20px;
}

.section-lede {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 48px;
}

/* ── Values ──────────────────────────────────────────── */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.value-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  padding: 26px;
}

.value-card h3 { font-size: 19px; margin-bottom: 10px; color: var(--accent-strong); }
.value-card p { color: var(--muted); font-size: 15.5px; }

/* ── Roles ───────────────────────────────────────────── */
.role-list { display: grid; gap: 18px; margin-top: 40px; }

.role-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  padding: 28px 30px;
  transition: border-color 0.15s ease;
}
.role-card:hover { border-color: rgba(124, 140, 255, 0.4); }

.role-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.role-head h3 { font-size: 22px; }

.role-meta {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.role-card p { color: var(--muted); margin-bottom: 14px; }

.role-apply { font-weight: 600; font-family: var(--font-head); }

.roles-note {
  margin-top: 34px;
  color: var(--muted);
  font-size: 16px;
}

/* ── Apply ───────────────────────────────────────────── */
.steps {
  max-width: 640px;
  margin: 34px 0 44px;
  padding-left: 22px;
  display: grid;
  gap: 16px;
  color: var(--muted);
}

.steps li::marker { color: var(--accent-strong); font-weight: 700; }
.steps strong { color: var(--text); }

.apply-note { margin-top: 18px; color: var(--muted); font-size: 15px; }

/* ── Footer ──────────────────────────────────────────── */
.footer {
  border-top: 1px solid rgba(124, 140, 255, 0.1);
  padding: 34px 0;
  color: var(--muted);
  font-size: 14px;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 560px) {
  .nav-links { gap: 16px; }
  .section { padding: 80px 0; }
  .hero { min-height: 72vh; }
}
