:root {
  --maple-bg: rgb(245, 247, 250);
  --maple-white: rgb(255, 255, 255);
  --maple-dark: rgb(14, 18, 27);
  --maple-orange: rgb(252, 122, 74);
  --maple-orange-dark: rgb(204, 55, 0);
  --maple-gray-light: rgb(225, 228, 234);
  --maple-gray-mid: rgb(153, 160, 174);
  --maple-gray-text: rgb(82, 88, 102);
  --maple-font: Geist, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --maple-radius-card: 20px;
  --maple-radius-btn: 200px;
  --maple-shadow-card: rgba(27, 28, 29, 0.04) 0px 2px 4px 0px;
  --maple-shadow-btn: rgba(88, 92, 95, 0.1) 0px 16px 32px -12px;
}

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

body.maple-subpage {
  margin: 0;
  padding: 0;
  background-color: var(--maple-bg);
  font-family: var(--maple-font);
  color: var(--maple-dark);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ===================== HEADER ===================== */

.sp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: 64px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  background-color: var(--maple-white);
  border-bottom: 1px solid var(--maple-gray-light);
}

.sp-header__inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.sp-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--maple-dark);
}

.sp-header__logo svg {
  height: 36px;
  width: 80px;
}

.sp-header__nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

.sp-header__nav-link {
  font-family: var(--maple-font);
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: -0.165px;
  padding: 8px 12px;
  border-radius: 6px;
  background-color: transparent;
  color: var(--maple-gray-text);
  text-decoration: none;
  transition: background-color 0.15s;
}

.sp-header__nav-link:hover {
  background-color: rgb(248, 250, 252);
  color: var(--maple-dark);
}

.sp-header__nav-link--active {
  background-color: var(--maple-bg);
  color: var(--maple-dark);
}

.sp-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--maple-font);
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: -0.165px;
  padding: 8px 16px;
  border-radius: var(--maple-radius-btn);
  background-color: var(--maple-dark);
  color: var(--maple-white);
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: var(--maple-shadow-card);
  transition: background-color 0.15s;
}

.sp-header__cta:hover {
  background-color: var(--maple-orange);
}

/* ===================== PAGE WRAPPER ===================== */

.sp-page {
  padding-top: 64px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.sp-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

@media (max-width: 430px) {
  .sp-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ===================== HERO SECTION ===================== */

.sp-hero {
  padding: 56px 0 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.sp-hero__eyebrow {
  font-family: var(--maple-font);
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--maple-orange);
  margin: 0;
}

.sp-hero__title {
  font-family: var(--maple-font);
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.48px;
  color: var(--maple-dark);
  margin: 0;
}

@media (max-width: 799px) {
  .sp-hero__title {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.36px;
  }
}

.sp-hero__subtitle {
  font-family: var(--maple-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.176px;
  color: var(--maple-gray-text);
  margin: 0;
  max-width: 600px;
}

/* ===================== SECTION DIVIDER ===================== */

.sp-divider {
  border: none;
  border-top: 1px solid var(--maple-gray-light);
  margin: 0;
}

/* ===================== CONTENT SECTIONS ===================== */

.sp-section {
  padding: 40px 0;
}

.sp-section + .sp-section {
  border-top: 1px solid var(--maple-gray-light);
}

.sp-section__title {
  font-family: var(--maple-font);
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.3px;
  color: var(--maple-dark);
  margin: 0 0 24px 0;
}

@media (max-width: 799px) {
  .sp-section__title {
    font-size: 18px;
    line-height: 24px;
  }
}

.sp-section__text {
  font-family: var(--maple-font);
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: -0.165px;
  color: var(--maple-gray-text);
  margin: 0 0 16px 0;
}

@media (max-width: 999px) {
  .sp-section__text {
    font-size: 14px;
    line-height: 20px;
  }
}

.sp-section__text:last-child {
  margin-bottom: 0;
}

/* ===================== CARD GRID ===================== */

.sp-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 799px) {
  .sp-card-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.sp-card-grid--single {
  grid-template-columns: 1fr;
}

/* ===================== CARD ===================== */

.sp-card {
  background-color: var(--maple-white);
  border-radius: var(--maple-radius-card);
  box-shadow: var(--maple-shadow-card);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 799px) {
  .sp-card {
    padding: 20px;
  }
}

.sp-card__title {
  font-family: var(--maple-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.176px;
  color: var(--maple-dark);
  margin: 0;
}

.sp-card__body {
  font-family: var(--maple-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.084px;
  color: var(--maple-gray-text);
  margin: 0;
}

@media (max-width: 799px) {
  .sp-card__body {
    font-size: 13px;
    line-height: 20px;
  }
}

/* ===================== FAQ CARDS ===================== */

.sp-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sp-faq__item {
  background-color: var(--maple-white);
  border-radius: 16px;
  box-shadow: var(--maple-shadow-card);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 0.5px solid var(--maple-gray-light);
}

@media (max-width: 799px) {
  .sp-faq__item {
    padding: 18px 20px;
  }
}

.sp-faq__question {
  font-family: var(--maple-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.176px;
  color: var(--maple-dark);
  margin: 0;
}

@media (max-width: 799px) {
  .sp-faq__question {
    font-size: 14px;
    line-height: 20px;
  }
}

.sp-faq__answer {
  font-family: var(--maple-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.084px;
  color: var(--maple-gray-text);
  margin: 0;
}

@media (max-width: 799px) {
  .sp-faq__answer {
    font-size: 13px;
    line-height: 20px;
  }
}

/* ===================== STATS ROW ===================== */

.sp-stats {
  display: flex;
  flex-direction: row;
  gap: 0;
  background-color: var(--maple-white);
  border-radius: var(--maple-radius-card);
  box-shadow: var(--maple-shadow-card);
  overflow: hidden;
}

@media (max-width: 799px) {
  .sp-stats {
    flex-direction: column;
  }
}

.sp-stats__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 28px 16px;
  border-right: 1px solid var(--maple-gray-light);
}

.sp-stats__item:last-child {
  border-right: none;
}

@media (max-width: 799px) {
  .sp-stats__item {
    border-right: none;
    border-bottom: 1px solid var(--maple-gray-light);
    padding: 20px 16px;
  }
  .sp-stats__item:last-child {
    border-bottom: none;
  }
}

.sp-stats__value {
  font-family: var(--maple-font);
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.36px;
  color: var(--maple-dark);
  margin: 0;
}

.sp-stats__label {
  font-family: var(--maple-font);
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0;
  color: var(--maple-gray-mid);
  margin: 0;
  text-align: center;
}

/* ===================== INLINE LIST ===================== */

.sp-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sp-list__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--maple-font);
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: -0.165px;
  color: var(--maple-gray-text);
}

@media (max-width: 999px) {
  .sp-list__item {
    font-size: 14px;
    line-height: 20px;
  }
}

.sp-list__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background-color: var(--maple-orange);
  margin-top: 8px;
}

/* ===================== INLINE LINKS ===================== */

.sp-link {
  color: var(--maple-dark);
  text-decoration: underline;
  text-decoration-color: var(--maple-gray-light);
  text-underline-offset: 3px;
  transition: color 0.15s, text-decoration-color 0.15s;
}

.sp-link:hover {
  color: var(--maple-orange);
  text-decoration-color: var(--maple-orange);
}

/* ===================== BADGE ===================== */

.sp-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 100px;
  background-color: var(--maple-bg);
  border: 0.5px solid var(--maple-gray-light);
  font-family: var(--maple-font);
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: var(--maple-gray-text);
  white-space: nowrap;
}

.sp-badge--orange {
  background-color: rgba(252, 122, 74, 0.08);
  border-color: rgba(252, 122, 74, 0.3);
  color: var(--maple-orange-dark);
}

/* ===================== BUTTONS ===================== */

.sp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--maple-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.176px;
  padding: 10px 20px;
  border-radius: var(--maple-radius-btn);
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.15s, box-shadow 0.15s;
}

@media (max-width: 799px) {
  .sp-btn {
    font-size: 14px;
    line-height: 20px;
  }
}

.sp-btn--primary {
  background-color: var(--maple-dark);
  color: var(--maple-white);
  box-shadow: var(--maple-shadow-btn);
}

.sp-btn--primary:hover {
  background-color: var(--maple-orange);
  box-shadow: none;
}

.sp-btn--primary:active {
  background-color: var(--maple-orange-dark);
  box-shadow: none;
}

.sp-btn--secondary {
  background-color: var(--maple-white);
  color: var(--maple-dark);
  border: 0.5px solid var(--maple-gray-light);
  box-shadow: rgba(88, 92, 95, 0.16) 0px 16px 40px -8px;
}

.sp-btn--secondary:hover {
  box-shadow: var(--maple-shadow-card);
  background-color: var(--maple-white);
}

.sp-btn--secondary:active {
  background-color: var(--maple-bg);
  border-color: var(--maple-bg);
  box-shadow: none;
}

.sp-btn-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ===================== HIGHLIGHT BOX ===================== */

.sp-highlight {
  background-color: rgb(242, 247, 252);
  border: 2px solid rgb(65, 124, 189);
  border-radius: 24px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 799px) {
  .sp-highlight {
    padding: 20px;
  }
}

.sp-highlight__title {
  font-family: var(--maple-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.176px;
  color: var(--maple-dark);
  margin: 0;
}

.sp-highlight__text {
  font-family: var(--maple-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.084px;
  color: var(--maple-gray-text);
  margin: 0;
}

/* ===================== TEAM GRID ===================== */

.sp-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 799px) {
  .sp-team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 430px) {
  .sp-team-grid {
    grid-template-columns: 1fr;
  }
}

.sp-team-card {
  background-color: var(--maple-white);
  border-radius: 16px;
  box-shadow: var(--maple-shadow-card);
  border: 0.5px solid var(--maple-gray-light);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sp-team-card__name {
  font-family: var(--maple-font);
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: -0.165px;
  color: var(--maple-dark);
  margin: 0;
}

.sp-team-card__role {
  font-family: var(--maple-font);
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0;
  color: var(--maple-gray-mid);
  margin: 0;
}

/* ===================== FOOTER ===================== */

.sp-footer {
  margin-top: auto;
  border-top: 1px solid var(--maple-gray-light);
  padding: 24px 0;
}

.sp-footer__inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 799px) {
  .sp-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

.sp-footer__links {
  display: flex;
  flex-direction: row;
  gap: 0;
  flex-wrap: wrap;
}

.sp-footer__link {
  font-family: var(--maple-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.084px;
  color: var(--maple-gray-mid);
  text-decoration: none;
  padding: 4px 12px;
  border-radius: 6px;
  transition: color 0.15s, background-color 0.15s;
}

.sp-footer__link:hover {
  color: var(--maple-dark);
  background-color: var(--maple-bg);
}

.sp-footer__social {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}

.sp-footer__social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--maple-white);
  border: 0.5px solid var(--maple-gray-light);
  box-shadow: rgba(88, 92, 95, 0.16) 0px 16px 40px -8px;
  text-decoration: none;
  color: var(--maple-orange);
  transition: box-shadow 0.15s, background-color 0.15s;
}

.sp-footer__social-btn:hover {
  box-shadow: var(--maple-shadow-card);
}

.sp-footer__copy {
  font-family: var(--maple-font);
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: var(--maple-gray-mid);
  margin: 0;
}

/* ===================== BREADCRUMB ===================== */

.sp-breadcrumb {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  padding: 20px 0 0;
  flex-wrap: wrap;
}

.sp-breadcrumb__item {
  font-family: var(--maple-font);
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: var(--maple-gray-mid);
  text-decoration: none;
  transition: color 0.15s;
}

.sp-breadcrumb__item:hover {
  color: var(--maple-dark);
}

.sp-breadcrumb__sep {
  font-size: 13px;
  color: var(--maple-gray-light);
  user-select: none;
}

.sp-breadcrumb__item--current {
  color: var(--maple-dark);
  pointer-events: none;
}

/* ===================== NOTICE BANNER ===================== */

.sp-notice {
  background-color: rgb(242, 247, 252);
  border: 1px solid rgb(65, 124, 189);
  border-radius: 12px;
  padding: 14px 20px;
  font-family: var(--maple-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.084px;
  color: rgb(30, 68, 128);
  margin-bottom: 24px;
}

/* ===================== UTILITY ===================== */

.sp-mt-0  { margin-top: 0; }
.sp-mt-8  { margin-top: 8px; }
.sp-mt-16 { margin-top: 16px; }
.sp-mt-24 { margin-top: 24px; }
.sp-mt-32 { margin-top: 32px; }
.sp-mb-0  { margin-bottom: 0; }
.sp-mb-8  { margin-bottom: 8px; }
.sp-mb-16 { margin-bottom: 16px; }
.sp-mb-24 { margin-bottom: 24px; }
.sp-mb-32 { margin-bottom: 32px; }

.sp-text-muted {
  color: var(--maple-gray-mid);
}

.sp-text-dark {
  color: var(--maple-dark);
}

.sp-text-orange {
  color: var(--maple-orange);
}

.sp-fw-500 {
  font-weight: 500;
}

.sp-overflow-hidden {
  overflow-x: hidden;
  max-width: 100%;
}