@font-face {
  font-family: Arboria-Bold;
  src: url("Arboria-Bold.735178adcab5c56e3348.otf");
}
@font-face {
  font-family: Arboria-Book;
  src: url("Arboria-Book.4043461e937016240f34.otf");
}
@font-face {
  font-family: Arboria-Medium;
  src: url("Arboria-Medium.7116254d02b69fa75241.otf");
}

*, *::before, *::after {
  box-sizing: border-box;
}

.pell-page {
  min-height: 100vh;
  background-color: rgb(240, 241, 244);
  font-family: Arboria-Medium, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: rgb(255, 255, 255);
  overflow-x: hidden;
}

.pell-page-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 60px;
  height: 70px;
  background: rgb(38, 38, 44);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 10px 0px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}

@media (max-width: 1199.95px) {
  .pell-page-header {
    padding: 12px 25px;
    height: 54px;
  }
}

.pell-page-header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.pell-page-header-logo svg {
  fill: none;
}

.pell-page-header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

@media (max-width: 1199.95px) {
  .pell-page-header-nav {
    display: none;
  }
}

.pell-page-header-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-family: Arboria-Medium, sans-serif;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.2s;
}

.pell-page-header-nav a:hover {
  color: rgb(255, 255, 255);
}

.pell-page-header-nav a.active {
  color: rgb(255, 255, 255);
}

.pell-page-body {
  margin-top: 70px;
  padding: 48px 60px 64px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  background: transparent;
}

@media (max-width: 1199.95px) {
  .pell-page-body {
    margin-top: 54px;
    padding: 32px 20px 48px;
  }
}

.pell-page-bg-wrapper {
  background-color: rgb(19, 19, 23);
  min-height: calc(100vh - 70px);
  margin-top: 70px;
}

@media (max-width: 1199.95px) {
  .pell-page-bg-wrapper {
    margin-top: 54px;
  }
}

.pell-page-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 60px 80px;
}

@media (max-width: 1199.95px) {
  .pell-page-inner {
    padding: 32px 20px 64px;
  }
}

.pell-page-h1 {
  font-family: Arboria-Bold, sans-serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 16px;
  background: linear-gradient(94deg, rgb(255, 255, 255) 49.18%, rgb(7, 71, 247) 77.3%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 899.95px) {
  .pell-page-h1 {
    font-size: 34px;
  }
}

.pell-page-subtitle {
  font-family: Arboria-Book, sans-serif;
  font-size: 17px;
  color: rgb(153, 153, 153);
  margin: 0 0 48px;
  max-width: 680px;
  line-height: 1.6;
}

.pell-section {
  margin-bottom: 56px;
}

.pell-section-title {
  font-family: Arboria-Bold, sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: rgb(255, 255, 255);
  margin: 0 0 28px;
  padding-left: 14px;
  border-left: 3px solid rgb(76, 103, 239);
  line-height: 1.2;
}

@media (max-width: 899.95px) {
  .pell-section-title {
    font-size: 22px;
  }
}

.pell-qa-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pell-qa-item {
  background: rgba(9, 9, 9, 0.55);
  border: 1px solid rgb(70, 70, 70);
  border-radius: 4px;
  padding: 28px 32px;
  transition: border-color 0.2s;
}

.pell-qa-item:hover {
  border-color: rgb(76, 103, 239);
}

@media (max-width: 899.95px) {
  .pell-qa-item {
    padding: 20px 18px;
  }
}

.pell-qa-question {
  font-family: Arboria-Bold, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgb(255, 255, 255);
  margin: 0 0 14px;
  line-height: 1.35;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pell-qa-question::before {
  content: "Q";
  display: inline-block;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: rgb(76, 103, 239);
  color: rgb(255, 255, 255);
  font-family: Arboria-Bold, sans-serif;
  font-size: 13px;
  border-radius: 50%;
  text-align: center;
  line-height: 26px;
  margin-top: 1px;
}

@media (max-width: 899.95px) {
  .pell-qa-question {
    font-size: 16px;
  }
}

.pell-qa-answer {
  font-family: Arboria-Book, sans-serif;
  font-size: 15px;
  color: rgb(153, 153, 153);
  margin: 0;
  line-height: 1.7;
  padding-left: 36px;
}

.pell-qa-answer a {
  color: rgb(76, 103, 239);
  text-decoration: none;
  transition: color 0.2s;
}

.pell-qa-answer a:hover {
  color: rgb(120, 148, 255);
}

.pell-inline-link {
  color: rgb(76, 103, 239);
  text-decoration: none;
  transition: color 0.2s;
}

.pell-inline-link:hover {
  color: rgb(120, 148, 255);
}

.pell-company-sections {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.pell-company-section {
  background: rgba(9, 9, 9, 0.55);
  border: 1px solid rgb(70, 70, 70);
  border-radius: 4px;
  padding: 36px 40px;
  transition: border-color 0.2s;
}

.pell-company-section:hover {
  border-color: rgb(70, 70, 80);
}

@media (max-width: 899.95px) {
  .pell-company-section {
    padding: 24px 18px;
  }
}

.pell-company-section-title {
  font-family: Arboria-Bold, sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: rgb(255, 255, 255);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pell-company-section-title::before {
  content: "";
  display: block;
  width: 6px;
  height: 20px;
  border-radius: 2px;
  background: rgb(76, 103, 239);
  flex-shrink: 0;
}

.pell-company-section p {
  font-family: Arboria-Book, sans-serif;
  font-size: 15px;
  color: rgb(153, 153, 153);
  margin: 0 0 14px;
  line-height: 1.75;
}

.pell-company-section p:last-child {
  margin-bottom: 0;
}

.pell-company-section a {
  color: rgb(76, 103, 239);
  text-decoration: none;
  transition: color 0.2s;
}

.pell-company-section a:hover {
  color: rgb(120, 148, 255);
}

.pell-company-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}

@media (max-width: 899.95px) {
  .pell-company-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 900px) and (max-width: 1199.95px) {
  .pell-company-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pell-company-grid-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgb(60, 60, 65);
  border-radius: 4px;
  padding: 20px 22px;
}

.pell-company-grid-item-title {
  font-family: Arboria-Medium, sans-serif;
  font-size: 15px;
  color: rgb(255, 255, 255);
  margin: 0 0 8px;
}

.pell-company-grid-item p {
  font-family: Arboria-Book, sans-serif;
  font-size: 14px;
  color: rgb(120, 120, 130);
  margin: 0;
  line-height: 1.6;
}

.pell-numbers-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}

.pell-number-card {
  flex: 1 1 180px;
  background: rgba(9, 9, 9, 0.55);
  border: 1px solid rgb(70, 70, 70);
  border-radius: 4px;
  padding: 24px 28px;
  min-width: 160px;
}

.pell-number-card-value {
  font-family: Arboria-Bold, sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: rgb(255, 255, 255);
  text-shadow: rgba(76, 103, 239, 0.7) 2px 2px 4px, rgba(76, 103, 239, 0.7) -2px -2px 10px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.pell-number-card-label {
  font-family: Arboria-Book, sans-serif;
  font-size: 14px;
  color: rgb(153, 153, 153);
}

.pell-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  padding: 14px 36px;
  border-radius: 45px;
  background: rgb(76, 103, 239);
  color: rgb(255, 255, 255);
  font-family: Arboria-Medium, sans-serif;
  font-size: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}

.pell-back-btn:hover {
  background: rgb(60, 85, 210);
  box-shadow: rgba(76, 103, 239, 0.4) 0px 4px 16px;
  color: rgb(255, 255, 255);
}

@media (max-width: 899.95px) {
  .pell-back-btn {
    font-size: 14px;
    padding: 12px 28px;
  }
}

.pell-page-footer {
  background: rgb(38, 38, 44);
  padding: 28px 60px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 899.95px) {
  .pell-page-footer {
    padding: 24px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

.pell-page-footer-copy {
  font-family: Arboria-Book, sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.pell-page-footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.pell-page-footer-links a {
  font-family: Arboria-Book, sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.pell-page-footer-links a:hover {
  color: rgb(255, 255, 255);
}

.pell-divider {
  width: 100%;
  height: 1px;
  background: rgb(60, 60, 65);
  margin: 0 0 48px;
  border: none;
}

.pell-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  font-family: Arboria-Book, sans-serif;
  font-size: 14px;
  color: rgb(120, 120, 130);
  flex-wrap: wrap;
}

.pell-breadcrumb a {
  color: rgb(76, 103, 239);
  text-decoration: none;
  transition: color 0.2s;
}

.pell-breadcrumb a:hover {
  color: rgb(120, 148, 255);
}

.pell-breadcrumb-sep {
  color: rgb(70, 70, 75);
}

.pell-intro-text {
  font-family: Arboria-Book, sans-serif;
  font-size: 16px;
  color: rgb(153, 153, 153);
  line-height: 1.75;
  margin: 0 0 40px;
  max-width: 820px;
}

.pell-intro-text a {
  color: rgb(76, 103, 239);
  text-decoration: none;
  transition: color 0.2s;
}

.pell-intro-text a:hover {
  color: rgb(120, 148, 255);
}

.pell-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(76, 103, 239, 0.15);
  border: 1px solid rgba(76, 103, 239, 0.35);
  color: rgb(120, 148, 255);
  font-family: Arboria-Book, sans-serif;
  font-size: 12px;
  margin-right: 6px;
  margin-bottom: 6px;
}

.pell-highlight {
  color: rgb(76, 103, 239);
}

.pell-social-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
}

.pell-social-row a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-family: Arboria-Book, sans-serif;
  font-size: 14px;
  transition: color 0.2s;
}

.pell-social-row a:hover {
  color: rgb(255, 255, 255);
}