/* openclaw static-deploy */
:root {
  --bg: #0b1020;
  --panel: #131a2f;
  --text: #e6ebff;
  --muted: #a9b3d9;
  --brand: #22c55e;
  --brand-2: #15803d;
  --border: #263152;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: radial-gradient(circle at top right, #14532d 0, var(--bg) 45%);
  color: var(--text);
}

.container {
  width: min(1040px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

.hero {
  padding-bottom: 2rem;
}

.hero-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: center;
  padding: 2rem 0 1rem;
}

.avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.eyebrow {
  margin: 0;
  color: var(--muted);
}

h1 {
  margin: 0.25rem 0 0;
  font-size: clamp(2rem, 6vw, 3.2rem);
}

.subtitle {
  margin-top: 0.65rem;
  color: var(--muted);
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.btn {
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  font-weight: 600;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border: none;
}

.section {
  margin-top: 1.2rem;
}

.card {
  background: color-mix(in srgb, var(--panel) 92%, #fff);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.1rem;
}

h2 {
  margin: 0 0 0.6rem;
  font-size: 1.25rem;
}

h3 {
  margin: 0.2rem 0 0.4rem;
}

p,
li {
  line-height: 1.6;
  color: var(--muted);
}

.list {
  margin: 0;
  padding-left: 1.2rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project a,
.contact a {
  color: #86efac;
}

.footer {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding: 1rem 0 2rem;
  color: var(--muted);
}

@media (max-width: 860px) {
  .grid.two,
  .grid.three {
    grid-template-columns: 1fr;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    gap: 0.75rem;
  }
}
