:root {
  --bg: #0f172a;
  --bg-2: #1e293b;
  --fg: #f1f5f9;
  --fg-dim: #94a3b8;
  --accent: #38bdf8;
  --accent-2: #818cf8;
  --card-bg: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  color: var(--fg);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.hero {
  text-align: center;
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--border);
}

.logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--accent);
  margin-bottom: 32px;
}

.hero h1 {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 800;
  margin: 0 0 20px;
  background: linear-gradient(90deg, var(--fg) 0%, var(--accent) 60%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  font-size: 18px;
  color: var(--fg-dim);
  max-width: 560px;
  margin: 0 auto 32px;
}

.cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  color: var(--fg);
  font-weight: 500;
  transition: all 0.15s ease;
}
.btn:hover { background: rgba(255,255,255,0.08); text-decoration: none; }
.btn.primary {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  font-weight: 600;
}
.btn.primary:hover { background: #0ea5e9; }

.section {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

.section h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 32px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.card:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.4);
}

.card .icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.card h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 8px;
}

.card p {
  color: var(--fg-dim);
  font-size: 14px;
  margin: 0;
}

.steps {
  max-width: 640px;
  padding-left: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  padding: 12px 0 12px 48px;
  position: relative;
  color: var(--fg-dim);
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 12px;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.steps li strong { color: var(--fg); }

.footer {
  padding: 40px 0 24px;
  text-align: center;
  color: var(--fg-dim);
  font-size: 14px;
}

.footer div { margin: 4px 0; }

@media (max-width: 600px) {
  .container { padding: 32px 16px; }
  .hero { padding: 32px 0; }
  .hero h1 { font-size: 36px; }
  .tagline { font-size: 16px; }
  .section { padding: 40px 0; }
  .section h2 { font-size: 22px; }
}

/* ---------- Team section ---------- */
.team-card {
  max-width: 560px;
  padding: 20px 22px;
}

.team-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.team-head .avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.team-head h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  display: inline;
}

.team-head .role {
  margin: 0 0 0 8px;
  font-size: 12px;
  color: var(--fg-dim);
  font-weight: 400;
}

.team-head .role::before {
  content: "·";
  margin-right: 8px;
  color: var(--fg-dim);
}

.team-bio {
  color: var(--fg-dim);
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 12px;
}

.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 12px;
}

.team-skills .tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--fg-dim);
  font-size: 11px;
  font-weight: 500;
  border: 1px solid var(--border);
}

.team-skills .tag:hover {
  color: var(--accent);
  border-color: rgba(56, 189, 248, 0.3);
}

.team-link {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}

.team-link:hover {
  text-decoration: none;
  border-bottom-color: var(--accent);
}

.team-hiring {
  margin-top: 20px;
  text-align: center;
  color: var(--fg-dim);
  font-size: 13px;
  font-style: italic;
}
