.company-main {
  background: var(--carbon);
}

.company-shell {
  width: min(100%, var(--shell));
  margin: 0 auto;
  padding-right: var(--gutter);
  padding-left: var(--gutter);
}

.company-index {
  margin: 0;
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.company-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
}

.company-hero::after {
  position: absolute;
  right: -8vw;
  bottom: -220px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(81, 230, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 100px rgba(81, 230, 255, 0.06);
  content: "";
}

.company-hero .company-shell {
  position: relative;
  z-index: 1;
  min-height: 570px;
  padding-top: clamp(92px, 12vw, 160px);
  padding-bottom: clamp(88px, 11vw, 144px);
}

.company-hero h1,
.company-record h2,
.representative h2,
.registry h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
}

.company-hero h1 {
  max-width: 980px;
  margin-top: 28px;
  font-size: clamp(52px, 8vw, 112px);
  line-height: 0.94;
}

.company-hero h1 em {
  color: var(--yellow);
  font-style: normal;
}

.company-lede {
  max-width: 760px;
  margin: 36px 0 0;
  color: var(--muted-dark);
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.35;
}

.company-lede strong {
  color: var(--white);
  font-weight: 600;
}

.company-record,
.representative,
.registry {
  border-bottom: 1px solid var(--line-dark);
}

.record-layout,
.representative-layout,
.registry-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(56px, 9vw, 150px);
  padding-top: clamp(76px, 9vw, 128px);
  padding-bottom: clamp(76px, 9vw, 128px);
}

.company-record h2,
.representative h2,
.registry h2 {
  margin-top: 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
}

.company-record header > p:last-child {
  max-width: 390px;
  margin: 24px 0 0;
  color: var(--muted-dark);
  font-size: 17px;
  line-height: 1.55;
}

.record-list {
  margin: 0;
  border-top: 1px solid var(--line-dark);
}

.record-list div {
  display: grid;
  grid-template-columns: minmax(150px, 0.58fr) minmax(0, 1fr);
  gap: 36px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line-dark);
}

.record-list dt {
  color: var(--muted-dark);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.record-list dd {
  margin: 0;
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
}

.representative {
  background: var(--graphite);
}

.representative-copy > p,
.registry-layout > div:last-child > p {
  max-width: 780px;
  margin: 0;
  color: var(--muted-dark);
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.45;
}

.representative-copy strong,
.registry-layout strong {
  color: var(--white);
  font-weight: 600;
}

.representative-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 30px;
  margin-top: 44px;
}

.representative-links a,
.registry-link {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--yellow);
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
}

.registry-link {
  display: inline-block;
  margin-top: 34px;
}

@media (max-width: 860px) {
  .company-hero .company-shell {
    min-height: auto;
  }

  .record-layout,
  .representative-layout,
  .registry-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 520px) {
  .company-hero h1 {
    font-size: 46px;
    line-height: 1;
  }

  .record-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .representative-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .representative-links a,
  .registry-link {
    overflow-wrap: anywhere;
  }
}
