body {
  margin: 0;
  color: var(--ac-ink);
  background: var(--white);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.cla-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  height: 76px;
  color: #fff;
}
.cla-header-inner {
  width: min(calc(100% - 48px), var(--max));
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cla-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 750;
  letter-spacing: -0.02em;
}
.cla-brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 25px rgba(109, 93, 252, 0.35);
}
.cla-brand-sub {
  opacity: 0.58;
  font-weight: 500;
}
.cla-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 14px;
}
.cla-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.72);
  transition: 0.2s;
}
.cla-nav a:hover {
  color: #fff;
}

.cla-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: 680px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(
      700px 360px at 76% 18%,
      rgba(109, 93, 252, 0.24),
      transparent 68%
    ),
    radial-gradient(
      600px 300px at 10% 100%,
      rgba(72, 104, 255, 0.13),
      transparent 70%
    ),
    linear-gradient(135deg, var(--hero), var(--hero-2));
}
.cla-hero:after {
  content: "";
  position: absolute;
  inset: auto -10% -180px;
  height: 330px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.09),
    transparent 65%
  );
  pointer-events: none;
}
.cla-hero .container {
  position: relative;
  z-index: 2;
  padding-top: 50px;
}
.cla-hero .container.bottom {
  padding-bottom: 50px;
}
.cla-hero h1 {
  max-width: 820px;
  margin: 0 0 22px;
  font-size: clamp(48px, 7vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 760;
  color: rgba(255, 255, 255, 0.9);
}
.cla-hero h2 {
  color: rgba(255, 255, 255, 0.9);
}
.cla-hero-lead {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.65;
}
.cla-hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 38px;
}
.cla-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 9px;
  text-decoration: none;
  color: #fff;
  font-weight: 650;
  transition: 0.2s;
  background: rgba(255, 255, 255, 0.04);
}
.cla-btn-outline:hover {
  background: #fff;
  color: var(--ac-ink);
  border-color: #fff;
}
.cla-text-link,
.cla-inline-link {
  text-decoration: none;
  color: var(--accent);
  font-weight: 700;
  transition: 0.2s;
}
.cla-hero .cla-text-link {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}
.cla-text-link:hover,
.cla-inline-link:hover {
  color: var(--accent-2);
}
.cla-hero .cla-text-link:hover {
  color: #fff;
}

.cla-section {
  padding: 108px 0;
}
.cla-section-muted {
  background: var(--surface);
}
.cla-section-title {
  max-width: 820px;
  margin-bottom: 52px;
}
.cla-section-title h2 {
  color: var(--ac-ink);
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 740;
}
.cla-section-title p {
  margin: 0;
  color: var(--ac-muted);
  font-size: 18px;
  max-width: 720px;
}
.cla-prose {
  max-width: 800px;
  font-size: 18px;
  color: #414650;
}
.cla-prose p {
  margin: 0 0 24px;
}

.cla-feature {
  position: relative;
  height: 100%;
  padding: 34px 0 36px;
  border-top: 1px solid var(--line);
}
.cla-feature-number {
  display: block;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.cla-feature h3,
.cla-step h3,
.cla-resource-group h3 {
  color: var(--ac-navy);
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.cla-feature p,
.cla-step p,
.cla-resource-group p {
  margin: 0;
  color: var(--ac-muted);
  max-width: 500px;
}

.cla-workflow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cla-step {
  min-height: 250px;
  padding: 32px 28px 34px 0;
  position: relative;
}
.cla-step:not(:last-child) {
  border-right: 1px solid var(--line);
  margin-right: 28px;
  padding-right: 28px;
}
.cla-step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ac-ink);
  color: #fff;
  font-size: 13px;
  font-weight: 750;
  margin-bottom: 28px;
}
.cla-step-content h3 {
  color: var(--ac-navy);
  font-size: 19px;
}
.cla-workflow-link {
  margin-top: 30px;
}

.cla-ecosystem {
  display: grid;
  grid-template-columns: minmax(0, 2fr) 1fr;
  gap: 60px;
  align-items: end;
}
.cla-ecosystem p {
  color: var(--ac-muted);
  font-size: 18px;
  margin: 0 0 18px;
  max-width: 760px;
}
.cla-ecosystem .cla-inline-link {
  justify-self: end;
  align-self: end;
}

.cla-legal-box {
  max-width: 900px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 42px;
  background: #fff;
  box-shadow: var(--shadow);
}
.cla-legal-box h3 {
  color: var(--ac-navy);
  margin: 0 0 16px;
  font-size: 23px;
  letter-spacing: -0.02em;
}
.cla-legal-box p {
  color: var(--ac-muted);
  max-width: 780px;
}
.cla-legal-box p:last-child {
  margin-bottom: 0;
}

.cla-resources {
  padding-bottom: 120px;
}
.cla-resource-group {
  height: 100%;
  padding: 0 28px 0 0;
  border-right: 1px solid var(--line);
}
.cla-resource-group h3 {
  color: var(--ac-navy);
  font-size: 20px;
}
.cla-resource-list {
  list-style: none;
  padding: 10px 0 0;
  margin: 0;
}
.cla-resource-list li {
  border-top: 1px solid var(--line);
}
.cla-resource-list a {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  color: var(--ac-ink);
  text-decoration: none;
  font-weight: 650;
  font-size: 15px;
}
.cla-resource-list a:hover {
  color: var(--accent);
}

.cla-footer {
  background: var(--hero);
  color: rgba(255, 255, 255, 0.6);
  padding: 34px 0;
  font-size: 14px;
}
.cla-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.cla-footer a {
  text-decoration: none;
  color: #fff;
}

@media (max-width: 900px) {
  .cla-workflow {
    grid-template-columns: repeat(2, 1fr);
  }
  .cla-step:not(:last-child) {
    border-right: 0;
    margin-right: 0;
    padding-right: 28px;
  }
  .cla-step:nth-child(odd) {
    border-right: 1px solid var(--line);
  }
  .cla-ecosystem {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cla-ecosystem .cla-inline-link {
    justify-self: start;
  }
}
@media (max-width: 767px) {
  .cla-header-inner {
    width: min(calc(100% - 32px), var(--max));
  }
  .cla-header {
    height: 68px;
  }
  .cla-nav {
    display: none;
  }
  .cla-hero {
    min-height: 620px;
  }
  .cla-hero h1 {
    font-size: 52px;
  }
  .cla-hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
  .col-md-6,
  .col-md-4 {
    width: 100%;
  }
  .cla-feature {
    padding: 28px 0;
  }
  .cla-workflow {
    grid-template-columns: 1fr;
  }
  .cla-step,
  .cla-step:not(:last-child),
  .cla-step:nth-child(odd) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    margin: 0;
    padding: 28px 0;
  }
  .cla-step:last-child {
    border-bottom: 0;
  }
  .cla-legal-box {
    padding: 28px;
  }
  .cla-resource-group {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 30px;
    margin-bottom: 30px;
  }
  .cla-resource-group:last-child {
    border-bottom: 0;
    margin-bottom: 0;
  }
  .cla-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

.eyebrow {
  display: inline-flex;
  gap: 9px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.eyebrow:hover {
  color: var(--accent-2);
}
/* .eyebrow:before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent-2);
} */
.contribute-grid,
.repo-grid,
.cla-feature-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
}
.contribute-card {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}
.contribute-number {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}
.contribute-card h3 {
  color: var(--ac-navy);
  margin: 0 0 12px;
  font-size: 23px;
}
.contribute-card p,
.contribute-card li {
  color: var(--ac-muted);
}
.contribute-card p {
  margin: 0 0 14px;
}
.contribute-card ul {
  padding-left: 20px;
}
.repo-grid {
  gap: 20px;
}
.repo-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  background: #fff;
}
.repo-card h3 {
  color: var(--ac-navy);
  margin: 0 0 10px;
}
.cla-feature-band {
  align-items: start;
  gap: 60px;
}
.cla-feature-band h2 {
  color: var(--ac-ink);
  margin: 0 0 15px;
  font-size: clamp(32px, 4vw, 46px);
  letter-spacing: -0.04em;
  line-height: 1.12;
}
.cla-legal-box ol {
  color: var(--ac-muted);
}
.cla-legal-box li {
  margin: 7px 0;
}
.cla-legal-box ul {
  color: var(--ac-muted);
  padding-left: 20px;
}
@media (max-width: 800px) {
  .contribute-grid,
  .repo-grid,
  .cla-feature-band {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contribute-card {
    border-top: 1px solid var(--line);
  }
}

.activity-feed {
  width: 100%;
}
.project-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.activity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  max-width: 928px;
  width: 100%;
  margin-bottom: 16px;
}
.activity a {
  color: var(--accent);
}
.activity a:hover {
  color: var(--accent-2);
}
.activity__avatar {
  display: block;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 12px;
}
@media (min-width: 768px) {
  .activity__avatar {
    width: 64px;
    height: 64px;
    margin-right: 20px;
  }
}
.activity__avatar img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.activity__body {
  -webkit-box-shadow:
    0 3px 8px rgba(0, 0, 0, 0.13),
    0 2px 1px rgba(0, 0, 0, 0.1);
  box-shadow:
    0 3px 8px rgba(0, 0, 0, 0.13),
    0 2px 1px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 16px 20px;
  position: relative;
  min-height: 114px;
  width: 100%;
  z-index: 1;
  background: #fff;
}
.activity__body:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  z-index: -1;
  border-radius: 4px;
}
.activity__body:before {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  right: calc(100% - 7px);
  z-index: -2;
  background: #fff;
  top: 27px;
  -webkit-box-shadow: -2px 0 8px 0 rgba(0, 0, 0, 0.13);
  box-shadow: -2px 0 8px 0 rgba(0, 0, 0, 0.13);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.good-first-issue .activity__body:after,
.good-first-issue .activity__body:before {
  display: none;
}
.activity__body-hd a {
  font-weight: 600;
  font-size: 18px;
}
@media (min-width: 768px) {
  .activity__body-hd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.activity__activity {
  font-size: 14px;
  font-style: italic;
}
@media (min-width: 768px) {
  .activity__activity {
    text-align: right;
  }
}
.activity__title {
  font-weight: 400;
  font-size: 18px;
  display: block;
  margin: 8px 0 12px;
}
.activity__footer {
  font-weight: 600;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.activity__footer svg {
  margin-right: 8px;
}
.IssueLabel {
  display: inline-block;
  vertical-align: middle;
  margin: 0 4px 6px 0;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px 3px;
  border-radius: 50px;
  text-transform: capitalize;
  text-align: center;
  min-width: 50px;
}
