:root {
  --bg: #0a0a0a;
  --fg: #f2f2f0;
  --fg-dim: #8a8a86;
  --rule: #232323;
  --accent: #f2f2f0;
  --green: #22c55e;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Arimo', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-start;
  gap: 1rem 1.5rem;
  padding: 1.75rem 2.5rem;
  background: linear-gradient(var(--bg) 60%, transparent);
}

.wordmark {
  position: relative;
  display: inline-block;
  padding-bottom: 0.9rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.wordmark::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.25rem;
  height: 3px;
  background: var(--green);
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 2.5rem;
}

.statement {
  max-width: 980px;
  margin: 0;
  font-size: clamp(1.8rem, 4.6vw, 3.6rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.01em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  margin-top: 2.75rem;
}

.contact-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 2rem;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.link-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  vertical-align: -2px;
}

.contact-cta,
.quiet-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.contact-cta:hover {
  background: var(--green);
  color: var(--bg);
}

.approach {
  border-top: 1px solid var(--rule);
  padding: 4rem 2.5rem;
}

.kicker {
  display: block;
  margin-bottom: 1.1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
}

.approach-statement {
  max-width: 880px;
  margin: 0;
  font-size: clamp(1.4rem, 3.2vw, 2.2rem);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -0.005em;
  color: var(--fg);
}

.people {
  border-top: 1px solid var(--rule);
  padding: 3.5rem 2.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.people-heading {
  margin: 0 0 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.people-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.people-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--rule);
}

.people-list li:first-child {
  border-top: 1px solid var(--rule);
}

.name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--fg-dim);
  font-style: italic;
}

.role {
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  color: var(--fg-dim);
  text-align: right;
  white-space: nowrap;
}

.footer {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 2.5rem 2rem;
  font-size: 0.75rem;
  color: var(--fg-dim);
}

.footer a {
  color: var(--fg-dim);
  text-decoration: none;
}

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

@media (max-width: 720px) {
  .people {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .topbar, .hero, .people, .footer,
  .careers-hero, .careers-section {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .role-card {
    padding: 0.75rem 0.9rem;
  }
}

.wordmark-link {
  text-decoration: none;
  color: inherit;
}

.quiet-link {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.quiet-link:hover {
  border-color: var(--fg);
}

.careers-hero {
  padding: 3rem 2.5rem 1.25rem;
  max-width: 900px;
}

.hiring-heading {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.careers-section {
  border-top: 1px solid var(--rule);
  padding: 1.25rem 2.5rem;
}

.role-list {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.role-card {
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
}

.role-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.role-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
}

.role-apply {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--green);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.role-apply:hover {
  background: var(--green);
  color: var(--bg);
}

.role-desc {
  margin: 0.4rem 0 0;
  max-width: 640px;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--fg-dim);
}

.contact-cta:focus-visible,
.role-apply:focus-visible,
.quiet-link:focus-visible,
.wordmark-link:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

.updates-placeholder {
  margin: 0;
  max-width: 720px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--fg-dim);
}
