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

:root {
  --bg: #0d0d0f;
  --surface: #16161a;
  --border: #2a2a2e;
  --text: #e8e8ec;
  --muted: #888896;
  --accent: #c8a96e;
  --accent-dim: #a8894e;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

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

/* Header */
header {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 24px;
  font-size: 0.9rem;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--text);
}

/* Hero */
.hero {
  padding: 80px 0 72px;
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
}

.subhead {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 36px;
}

.lead strong {
  color: var(--text);
}

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

.btn {
  display: inline-block;
  background: var(--accent);
  color: #000;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.btn:hover {
  background: var(--accent-dim);
}

.btn-outline {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.btn-outline:hover {
  border-color: var(--muted);
}

/* Roles */
.roles {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 36px;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}

.role-label {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Features */
.features {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-list strong {
  display: block;
  margin-bottom: 4px;
}

.feature-list p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* CTA bottom */
.cta-bottom {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.cta-bottom h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.cta-bottom p {
  color: var(--muted);
  margin-bottom: 28px;
}

/* Footer */
footer {
  padding: 24px 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

footer a {
  color: var(--muted);
  text-decoration: none;
}

footer a:hover {
  color: var(--text);
}

.logo-icon {
  height: 4em;
}
