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

:root {
  --bg: #fbfaf8;
  --text: #000;
  --muted: #444;
  --light: #777;
  --border: #e6e6e6;
  --accent: #e9e2d8;
  --accent-ink: #6b5c4d;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  padding: 36px 20px 80px;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
}

.container {
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container > * {
  animation: fadeUp 600ms ease both;
}

.resource-card,
.job-card,
.build-card,
.team-card {
  animation: fadeUp 600ms ease both;
}

.resource-card:nth-child(1),
.job-card:nth-child(1),
.build-card:nth-child(1),
.team-card:nth-child(1) { animation-delay: 40ms; }
.resource-card:nth-child(2),
.job-card:nth-child(2),
.build-card:nth-child(2),
.team-card:nth-child(2) { animation-delay: 80ms; }
.resource-card:nth-child(3),
.job-card:nth-child(3),
.build-card:nth-child(3),
.team-card:nth-child(3) { animation-delay: 120ms; }
.resource-card:nth-child(4),
.job-card:nth-child(4),
.build-card:nth-child(4),
.team-card:nth-child(4) { animation-delay: 160ms; }
.resource-card:nth-child(5),
.job-card:nth-child(5),
.build-card:nth-child(5),
.team-card:nth-child(5) { animation-delay: 200ms; }
.resource-card:nth-child(6),
.job-card:nth-child(6),
.build-card:nth-child(6),
.team-card:nth-child(6) { animation-delay: 240ms; }
.resource-card:nth-child(7),
.job-card:nth-child(7),
.build-card:nth-child(7),
.team-card:nth-child(7) { animation-delay: 280ms; }
.resource-card:nth-child(8),
.job-card:nth-child(8),
.build-card:nth-child(8),
.team-card:nth-child(8) { animation-delay: 320ms; }
.resource-card:nth-child(9),
.job-card:nth-child(9),
.build-card:nth-child(9),
.team-card:nth-child(9) { animation-delay: 360ms; }
.resource-card:nth-child(10),
.job-card:nth-child(10),
.build-card:nth-child(10),
.team-card:nth-child(10) { animation-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  .container > * ,
  .resource-card,
  .job-card,
  .build-card,
  .team-card {
    animation: none;
  }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 44px;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
}

.brand img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
}

.brand span {
  display: none;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

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

.nav-links {
  display: flex;
  gap: 18px;
}

h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -1.5px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent);
  border-radius: 999px;
  padding: 4px 10px;
  width: fit-content;
}

.stats-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--light);
  margin: 0 0 32px;
}

.stats-strip span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.stats-strip span::after {
  content: "•";
  color: #bdb2a7;
}

.stats-strip span:last-child::after {
  content: "";
}

.stats-strip.tight {
  margin: -30px 0 40px;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 18px 0 56px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.hero-subhead {
  font-size: 20px;
  color: var(--muted);
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.2px;
}

p {
  font-size: 18px;
  margin-bottom: 28px;
  font-weight: 300;
  color: #333;
}

.section-break {
  height: 1px;
  background: #ddd;
  margin: 60px 0;
}

.emphasis {
  font-size: 19px;
  color: var(--text);
  font-weight: 400;
  margin: 40px 0;
}

button {
  background: var(--text);
  color: #fff;
  border: none;
  padding: 18px 48px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0;
  transition: all 0.2s;
  letter-spacing: 0.5px;
}

button:hover {
  background: #333;
  transform: translateY(-1px);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

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

.ghost-button {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--text);
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.5px;
}

.ghost-button:hover {
  background: var(--text);
  color: #fff;
}

.closing {
  margin-top: 48px;
  font-size: 18px;
}

.resources,
.jobs,
.team,
.builds {
  margin-top: 72px;
}

.resources-intro,
.jobs-intro,
.team-intro,
.builds-intro {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 36px;
}

.builds-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.build-card {
  border: 1px solid var(--border);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #fff;
}

.build-title {
  font-size: 18px;
  font-weight: 600;
}

.build-meta {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--light);
}

.build-desc {
  font-size: 16px;
  color: var(--muted);
}

.build-status {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111;
}

.resource-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.resource-card {
  border: 1px solid var(--border);
  padding: 18px 20px;
  transition: border-color 0.2s, transform 0.2s;
  background: #fff;
}

.resource-card:hover {
  border-color: #111;
  transform: translateY(-2px);
}

.resource-meta {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--light);
  margin-bottom: 0;
}

.resource-title {
  font-size: 18px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.resource-title:hover {
  text-decoration: underline;
}

.resource-desc {
  font-size: 16px;
  color: var(--muted);
  margin-top: 6px;
}

.jobs-callout {
  border: 1px solid #111;
  padding: 20px 22px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
}

.jobs-callout-title {
  font-size: 18px;
  font-weight: 600;
}

.jobs-callout-copy {
  font-size: 16px;
  color: var(--muted);
}

.job-board {
  display: grid;
  gap: 16px;
}

.job-card {
  border: 1px solid var(--border);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #fff;
}

.job-meta {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--light);
}

.job-title {
  font-size: 18px;
  font-weight: 500;
}

.job-details {
  font-size: 15px;
  color: #555;
}

.job-locked {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.job-locked::before {
  content: "●";
  font-size: 10px;
}

.job-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.team-grid {
  display: grid;
  gap: 18px;
}

.team-card {
  border: 1px solid var(--border);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
}

.team-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 0;
}

.team-name {
  font-size: 18px;
  font-weight: 600;
}

.team-role {
  font-size: 15px;
  color: #555;
}

.team-links a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  margin-right: 12px;
}

.team-links a:hover {
  border-bottom-color: var(--text);
}

@media (max-width: 768px) {
  body {
    padding: 32px 20px 60px;
  }

  .nav {
    margin-bottom: 28px;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    padding-top: 4px;
  }

  .nav-links {
    width: auto;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    align-items: center;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .brand img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .nav a {
    font-size: 13px;
    letter-spacing: 0.2px;
    white-space: nowrap;
    line-height: 1;
  }


  h1 {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .hero-subhead {
    font-size: 17px;
    margin-bottom: 16px;
  }

  .hero-actions {
    gap: 10px;
    margin-bottom: 14px;
  }

  .button-row button,
  .button-row .ghost-button {
    width: auto;
    justify-content: center;
    padding: 12px 22px;
    font-size: 14px;
  }

  .hero-image {
    margin: 12px 0 48px;
  }

  p {
    font-size: 17px;
  }

  button {
    padding: 16px 40px;
    font-size: 15px;
  }

  .resource-card,
  .job-card,
  .team-card,
  .build-card {
    padding: 16px 18px;
  }

  .jobs-callout {
    padding: 18px;
  }
}
.cta-button {
  margin-top: 32px;
}
