@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggexSg.woff2") format("woff2");
}

:root {
  --ink: #111011;
  --muted: #68646d;
  --paper: #f3efea;
  --panel: #fffdf9;
  --purple: #6d50d4;
  --purple-dark: #5134b7;
  --line: rgba(17, 16, 17, 0.13);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input, textarea, select { font: inherit; }
a { color: inherit; }

.button {
  display: inline-flex;
  min-height: 46px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  background: var(--purple);
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--purple-dark); box-shadow: 0 12px 24px rgba(81, 52, 183, .22); }
.button--dark { background: var(--ink); }
.button--dark:hover { background: #29252c; }
.button--wide { width: 100%; }
.arrow { font-size: 18px; line-height: 0; }

.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero {
  min-height: 560px;
  padding: 120px 0 88px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero__copy { position: relative; z-index: 2; width: min(980px, 100%); }
.hero h1, .role-hero h1 {
  margin: 0;
  font-size: clamp(54px, 7.5vw, 108px);
  font-weight: 600;
  letter-spacing: -.065em;
  line-height: .95;
}
.hero h1 span, .role-hero h1 span { color: var(--purple); }
.hero__intro {
  max-width: 650px;
  margin: 34px 0 0;
  color: #4e4952;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}
.openings { padding: 96px 0 124px; background: #111011; color: #fff; }
.section-heading { display: flex; justify-content: space-between; gap: 36px; align-items: end; margin-bottom: 48px; }
.section-heading h2 { margin: 0; font-size: clamp(42px, 6vw, 72px); font-weight: 550; letter-spacing: -.05em; line-height: 1; }
.section-heading p { max-width: 460px; margin: 0; color: #bcb7c0; font-size: 17px; line-height: 1.6; }
.job-list { border-top: 1px solid rgba(255,255,255,.2); }
.job-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  padding: 42px 0;
  border-bottom: 1px solid rgba(255,255,255,.2);
  text-decoration: none;
  transition: padding .25s ease, color .25s ease;
}
.job-card:hover { padding-left: 18px; color: #d2c7ff; }
.job-card__number { color: #9484d3; font-size: 13px; letter-spacing: .16em; }
.job-card h3 { margin: 12px 0 13px; font-size: clamp(32px, 4.8vw, 58px); font-weight: 550; letter-spacing: -.045em; }
.job-card p { max-width: 710px; margin: 0; color: #aca7af; font-size: 17px; line-height: 1.6; }
.job-card__action { align-self: center; display: flex; width: 58px; height: 58px; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; font-size: 24px; transition: background .2s ease, transform .2s ease; }
.job-card:hover .job-card__action { background: var(--purple); border-color: var(--purple); transform: rotate(-10deg); }

.culture { padding: 110px 0; }
.culture__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; align-items: start; }
.culture h2 { margin: 0; font-size: clamp(42px, 5.6vw, 72px); font-weight: 550; letter-spacing: -.05em; line-height: 1.03; }
.culture__points { display: grid; grid-template-columns: 1fr 1fr; gap: 44px 32px; }
.culture__point { padding-top: 22px; border-top: 1px solid var(--line); }
.culture__point strong { display: block; margin-bottom: 10px; font-size: 20px; }
.culture__point p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }

.role-hero { padding: 110px 0 80px; }
.breadcrumb { display: flex; gap: 10px; align-items: center; margin-bottom: 58px; color: var(--muted); font-size: 14px; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { color: var(--purple); }
.role-hero h1 { max-width: 980px; font-size: clamp(54px, 7.2vw, 96px); }
.role-hero__summary { display: grid; grid-template-columns: 1.35fr .65fr; gap: 72px; align-items: end; margin-top: 48px; }
.role-hero__summary p { margin: 0; max-width: 760px; color: #4e4952; font-size: clamp(19px, 2vw, 24px); line-height: 1.6; }
.role-meta { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.pill { padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; color: #4e4952; font-size: 13px; font-weight: 700; }

.role-content { padding: 84px 0 120px; background: var(--panel); }
.role-layout { display: grid; grid-template-columns: minmax(0, 1fr) 420px; gap: 100px; align-items: start; }
.prose section + section { margin-top: 58px; }
.prose h2 { margin: 0 0 24px; font-size: 32px; font-weight: 650; letter-spacing: -.035em; }
.prose p, .prose li { color: #514d54; font-size: 16px; line-height: 1.8; }
.prose p { margin: 0; }
.prose ul { margin: 0; padding: 0; list-style: none; }
.prose li { position: relative; padding: 11px 0 11px 28px; border-bottom: 1px solid rgba(17,16,17,.08); }
.prose li::before { content: "↗"; position: absolute; left: 0; color: var(--purple); font-weight: 800; }
.form-card { position: sticky; top: 112px; padding: 30px; border-radius: var(--radius); background: #eee7ff; box-shadow: 0 22px 60px rgba(47, 35, 76, .12); }
.form-card h2 { margin: 0 0 8px; font-size: 30px; letter-spacing: -.035em; }
.form-card__intro { margin: 0 0 26px; color: #625b6b; line-height: 1.55; }
.field { display: block; margin-top: 16px; }
.field span { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 750; }
.field small { display: block; margin-top: 7px; color: #716a79; font-size: 11px; line-height: 1.45; }
.field input, .field textarea {
  width: 100%;
  border: 1px solid rgba(17,16,17,.15);
  border-radius: 12px;
  outline: none;
  background: rgba(255,255,255,.85);
  color: var(--ink);
  transition: border .2s ease, box-shadow .2s ease;
}
.field input { height: 48px; padding: 0 14px; }
.field input[type="file"] { height: auto; padding: 12px; font-size: 12px; }
.field textarea { min-height: 120px; padding: 13px 14px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(109,80,212,.13); }
.consent { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; margin: 18px 0; color: #625b6b; font-size: 11px; line-height: 1.5; }
.consent input { margin: 2px 0 0; accent-color: var(--purple); }
.form-status { min-height: 20px; margin-top: 12px; font-size: 13px; font-weight: 700; }
.form-status[data-tone="error"] { color: #a1262f; }
.form-status[data-tone="success"] { color: #286238; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

@media (max-width: 900px) {
  .hero { min-height: 520px; padding-top: 88px; }
  .hero__copy { width: 100%; }
  .section-heading, .culture__grid, .role-hero__summary, .role-layout { grid-template-columns: 1fr; }
  .section-heading { display: grid; align-items: start; }
  .culture__grid, .role-layout { gap: 56px; }
  .role-meta { justify-content: flex-start; }
  .form-card { position: static; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 32px, 1180px); }
  .hero { min-height: auto; padding: 82px 0 72px; align-items: start; }
  .hero__copy { width: 100%; }
  .hero h1, .role-hero h1 { font-size: clamp(48px, 15vw, 68px); }
  .hero__intro { width: 86%; font-size: 18px; }
  .openings { padding: 76px 0 90px; }
  .job-card { grid-template-columns: 1fr 44px; gap: 16px; padding: 34px 0; }
  .job-card:hover { padding-left: 8px; }
  .job-card__action { width: 44px; height: 44px; }
  .job-card p { font-size: 15px; }
  .culture { padding: 80px 0; }
  .culture__points { grid-template-columns: 1fr; gap: 28px; }
  .role-hero { padding: 76px 0 60px; }
  .breadcrumb { margin-bottom: 38px; }
  .role-hero__summary { margin-top: 30px; gap: 28px; }
  .role-content { padding: 62px 0 80px; }
  .form-card { margin: 0 -4px; padding: 24px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
