/* Site-wide styles. Every page links this file and adds nothing of its own. */

:root {
  --bg: #000000;
  --text: #f7f5f0;
  --text-dim: #b8b5ad;
  --text-faint: #6a6864;
  --line: #1f1f1f;
  --line-bright: #2e2e2e;

  /* From the logo */
  --c-yellow: #ffe033;
  --c-orange: #fc8c00;
  --c-coral:  #f96932;
  --c-pink:   #ff4466;
  --c-magenta:#fc32d0;
  --c-purple: #cc44ff;

  --accent: var(--c-coral);

  --serif: 'Montserrat', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

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

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 72px 32px 120px;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 88px;
}
.nav-cta {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--text);
  text-decoration: none;
  padding: 10px 18px;
  border: 1px solid var(--line-bright);
  background: transparent;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-cta:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.nav-cta .arrow {
  transition: transform 0.2s;
}
.nav-cta:hover .arrow {
  transform: translateX(3px);
}

/* CTA at bottom of Ask section — solid coral, larger, centered */
.ask-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.ask-cta {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--bg);
  background: var(--accent);
  text-decoration: none;
  padding: 14px 28px;
  border: 1px solid var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, color 0.2s;
}
.ask-cta:hover {
  background: transparent;
  color: var(--accent);
}
.ask-cta .arrow {
  transition: transform 0.2s;
}
.ask-cta:hover .arrow {
  transform: translateX(3px);
}
.logo {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
}
.logo-mark {
  display: grid;
  grid-template-columns: repeat(3, 16px);
  grid-template-rows: repeat(3, 16px);
  gap: 4px;
}
.logo-mark span { width: 16px; height: 16px; display: block; }
.logo-mark span:nth-child(1) { background: var(--c-yellow); }
.logo-mark span:nth-child(2) { background: var(--c-orange); }
.logo-mark span:nth-child(3) { background: var(--c-pink); }
.logo-mark span:nth-child(4) { background: var(--c-orange); }
.logo-mark span:nth-child(5) { background: var(--c-coral); }
.logo-mark span:nth-child(6) { background: var(--c-magenta); }
.logo-mark span:nth-child(7) { background: var(--c-coral); }
.logo-mark span:nth-child(8) { background: var(--c-magenta); }
.logo-mark span:nth-child(9) { background: var(--c-purple); }
.logo .name {
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.01em;
}

/* ARTICLE */
.yc-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 9px 0;
  background: transparent;
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  margin: 0 auto 36px;
  width: fit-content;
}
.yc-badge svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 2px;
}
.yc-badge strong {
  color: var(--text);
  font-weight: 500;
}

article h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 14px;
}
article h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 600;
}
article p {
  margin-bottom: 22px;
  color: var(--text);
}
article p em {
  font-style: normal;
  color: var(--accent);
  font-weight: 600;
}
article p.lede {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 32px;
  color: var(--text);
  font-weight: 400;
}
article p.dim { color: var(--text-dim); }
article a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
article a:hover { border-bottom-color: var(--accent); }

article h2 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 56px 0 20px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

article ul, article ol {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
article ul li, article ol li {
  color: var(--text);
  padding: 12px 0 12px 28px;
  position: relative;
  border-bottom: 1px dashed var(--line);
  font-size: 16px;
  line-height: 1.55;
}
article ul li:last-child, article ol li:last-child {
  border-bottom: none;
}
article ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--accent);
  font-family: var(--mono);
  font-weight: 500;
}
article ol { counter-reset: item; }
article ol li {
  counter-increment: item;
}
article ol li::before {
  content: counter(item, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* STAT ROW for the targeting numbers */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin: 28px 0 32px;
}
.stat {
  background: var(--bg);
  padding: 20px 22px;
}
.stat .v {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.stat .v .accent { color: var(--accent); }
.stat .l {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 8px;
}
.stat .l::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--c-yellow);
  flex-shrink: 0;
}
.stat:nth-child(1) .l::before { background: var(--c-yellow); }
.stat:nth-child(2) .l::before { background: var(--c-orange); }
.stat:nth-child(3) .l::before { background: var(--c-pink); }
.stat:nth-child(4) .l::before { background: var(--c-purple); }

article .signoff {
  margin-top: 40px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}

/* EYEBROW — small mono label above an h1, and the link back up a level */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-bottom: 24px;
}
article a.eyebrow { color: var(--text-dim); }
article a.eyebrow:hover { color: var(--accent); border-bottom-color: transparent; }

/* ROLE LIST — one row per open position on the careers index */
.roles {
  margin: 32px 0 0;
  border-top: 1px solid var(--line);
}
article a.role {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 2px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}
article a.role:last-child { border-bottom: none; }
article a.role:hover { border-bottom-color: var(--line-bright); }
.role .title {
  display: block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
  transition: color 0.2s;
}
.role:hover .title { color: var(--accent); }
.role .where {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-top: 8px;
}
.role .arrow {
  color: var(--accent);
  font-family: var(--mono);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.role:hover .arrow { transform: translateX(3px); }

/* COLOR STRIP DIVIDER */
.strip {
  margin: 80px 0 0;
  display: flex;
  height: 4px;
  width: 100%;
}
.strip span { flex: 1; }
.strip span:nth-child(1) { background: var(--c-yellow); }
.strip span:nth-child(2) { background: var(--c-orange); }
.strip span:nth-child(3) { background: var(--c-coral); }
.strip span:nth-child(4) { background: var(--c-pink); }
.strip span:nth-child(5) { background: var(--c-magenta); }
.strip span:nth-child(6) { background: var(--c-purple); }

/* FOOTER */
footer {
  margin-top: 0;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}
footer .em {
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
}
footer a {
  color: var(--text-dim);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
footer a:hover {
  color: var(--text);
  border-bottom-color: var(--accent);
}
footer .right {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 600px) {
  .wrap { padding: 48px 22px 80px; }
  header { padding-bottom: 56px; }
  .logo { gap: 12px; }
  .logo-mark { grid-template-columns: repeat(3, 11px); grid-template-rows: repeat(3, 11px); gap: 3px; }
  .logo-mark span { width: 11px; height: 11px; }
  .logo .name { font-size: 21px; }
  .nav-cta { font-size: 13px; padding: 8px 14px; }
  article h1 { font-size: 28px; }
  article p.lede { font-size: 16px; }
  .stats { grid-template-columns: 1fr; }
  .role .title { font-size: 16px; }
  footer { flex-direction: column; align-items: flex-start; gap: 14px; }
}
