:root {
  --page-bg: #1e1e1e;
  --card-bg: #171923;
  --card-border: rgba(255,255,255,0.05);
  --accent: #9b87f5;
  --accent-green: #10B981;
  --accent-orange: #FFA500;
  --text-primary: #F7F6F0;
  --text-secondary: rgba(247,246,240,0.75);
  --text-muted: rgba(247,246,240,0.5);
  --border-subtle: rgba(255,255,255,0.1);
  --radius-card: 8px;
  --max-width: 80rem;
  --font-sans: Inter, system-ui, sans-serif;
  --font-display: Outfit, system-ui, sans-serif;
}

/* =============================================
   BASE / RESET FOR SUB-PAGES
   ============================================= */

body {
  background: var(--page-bg);
  color: var(--text-primary);
  font-family: var(--font-sans);
  min-height: 100vh;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #b8a8f8;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--text-primary);
  line-height: 1.25;
}

p {
  margin: 0;
  line-height: 1.7;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* =============================================
   SUB-PAGE NAV (mirrors main site nav)
   ============================================= */

.sp-nav {
  width: 100%;
  background: rgba(23, 25, 35, 0.95);
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 40;
}

.sp-nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sp-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.sp-nav__logo img {
  height: 40px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
}

.sp-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.sp-nav__link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 0.625rem;
  border-radius: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.sp-nav__link:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  text-decoration: none;
}

.sp-nav__link--active {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.sp-nav__connect {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  height: 36px;
  padding: 0 0.75rem;
  border-radius: 6px;
  background: var(--accent);
  color: #1a1a2e;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
  text-decoration: none;
}

.sp-nav__connect:hover {
  background: #b8a8f8;
  color: #1a1a2e;
  text-decoration: none;
}

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

.sp-page {
  min-height: calc(100vh - 64px);
  width: 100%;
  display: flex;
  flex-direction: column;
}

.sp-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

/* =============================================
   PAGE HERO / HEADER BLOCK
   ============================================= */

.sp-hero {
  padding: 3.5rem 1.5rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.sp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(155,135,245,0.1);
  border: 1px solid rgba(155,135,245,0.2);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sp-hero__icon {
  width: 20px;
  height: 20px;
}

.sp-hero__title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.sp-hero__subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 52rem;
  line-height: 1.65;
}

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

.sp-content {
  flex: 1;
  padding: 0 1.5rem 5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.sp-section {
  margin-bottom: 3rem;
}

.sp-section__heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.sp-section__heading-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* =============================================
   CARD COMPONENT (glass-card style)
   ============================================= */

.sp-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.sp-card--padded {
  padding: 1.5rem;
}

.sp-card--hover {
  transition: background 0.15s, border-color 0.15s;
  cursor: pointer;
}

.sp-card--hover:hover {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.1);
}

/* =============================================
   FAQ / Q&A ACCORDION
   ============================================= */

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

.sp-faq__item {
  border-bottom: 1px solid var(--border-subtle);
}

.sp-faq__item:first-child {
  border-top: 1px solid var(--border-subtle);
}

.sp-faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  transition: color 0.15s;
}

.sp-faq__question:hover {
  color: var(--accent);
}

.sp-faq__question h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: inherit;
  flex: 1;
}

.sp-faq__chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--text-muted);
  transition: transform 0.25s ease, color 0.15s;
}

.sp-faq__item--open .sp-faq__chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.sp-faq__item--open .sp-faq__question {
  color: var(--accent);
}

.sp-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.sp-faq__item--open .sp-faq__answer {
  max-height: 600px;
}

.sp-faq__answer p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  padding-bottom: 1.25rem;
}

.sp-faq__answer a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sp-faq__answer a:hover {
  color: #b8a8f8;
}

/* =============================================
   SECTION PROSE TEXT
   ============================================= */

.sp-prose {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sp-prose p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.sp-prose p a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sp-prose strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* =============================================
   GRID LAYOUTS
   ============================================= */

.sp-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.sp-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .sp-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .sp-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =============================================
   STAT / METRIC CARDS
   ============================================= */

.sp-stat {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sp-stat__label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.sp-stat__value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-display);
  line-height: 1;
}

.sp-stat__sub {
  font-size: 12px;
  color: var(--accent-green);
  font-weight: 600;
}

/* =============================================
   FEATURE / INFO CARDS
   ============================================= */

.sp-feature {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: border-color 0.15s, background 0.15s;
}

.sp-feature:hover {
  border-color: rgba(155,135,245,0.2);
  background: rgba(255,255,255,0.02);
}

.sp-feature__icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(155,135,245,0.1);
  border: 1px solid rgba(155,135,245,0.15);
  flex-shrink: 0;
}

.sp-feature__icon-wrap--green {
  background: rgba(16,185,129,0.1);
  border-color: rgba(16,185,129,0.15);
}

.sp-feature__icon-wrap--orange {
  background: rgba(255,165,0,0.1);
  border-color: rgba(255,165,0,0.15);
}

.sp-feature__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.sp-feature__desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* =============================================
   STEP / PROCESS LIST
   ============================================= */

.sp-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.sp-step {
  display: flex;
  gap: 1rem;
  position: relative;
  padding-bottom: 1.75rem;
}

.sp-step:last-child {
  padding-bottom: 0;
}

.sp-step__line-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.sp-step__number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(155,135,245,0.1);
  border: 1px solid rgba(155,135,245,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  z-index: 1;
}

.sp-step__connector {
  width: 1px;
  flex: 1;
  background: var(--border-subtle);
  margin-top: 4px;
}

.sp-step:last-child .sp-step__connector {
  display: none;
}

.sp-step__body {
  padding-top: 4px;
  flex: 1;
}

.sp-step__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.sp-step__desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* =============================================
   INLINE TEXT BADGE
   ============================================= */

.sp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sp-badge--green {
  background: rgba(16,185,129,0.12);
  color: #10B981;
  border: 1px solid rgba(16,185,129,0.2);
}

.sp-badge--accent {
  background: rgba(155,135,245,0.12);
  color: var(--accent);
  border: 1px solid rgba(155,135,245,0.2);
}

.sp-badge--orange {
  background: rgba(255,165,0,0.1);
  color: var(--accent-orange);
  border: 1px solid rgba(255,165,0,0.2);
}

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

.sp-divider {
  width: 100%;
  height: 1px;
  background: var(--border-subtle);
  margin: 2.5rem 0;
}

/* =============================================
   BACK / HOME BUTTON
   ============================================= */

.sp-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
  cursor: pointer;
}

.sp-back-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
  text-decoration: none;
}

.sp-back-btn--accent {
  background: var(--accent);
  border-color: transparent;
  color: #1a1a2e;
  font-weight: 600;
}

.sp-back-btn--accent:hover {
  background: #b8a8f8;
  border-color: transparent;
  color: #1a1a2e;
}

.sp-cta-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* =============================================
   TABLE (re-skin for sub-pages)
   ============================================= */

.sp-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.sp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.sp-table thead tr {
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border-subtle);
}

.sp-table th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.sp-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  vertical-align: middle;
}

.sp-table tbody tr:hover {
  background: rgba(255,255,255,0.02);
}

.sp-table tbody tr:last-child td {
  border-bottom: none;
}

/* =============================================
   ALERT / NOTICE BOX
   ============================================= */

.sp-alert {
  border-radius: var(--radius-card);
  padding: 1rem 1.25rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.6;
}

.sp-alert--info {
  background: rgba(155,135,245,0.07);
  border: 1px solid rgba(155,135,245,0.18);
  color: rgba(247,246,240,0.8);
}

.sp-alert--warning {
  background: rgba(255,165,0,0.07);
  border: 1px solid rgba(255,165,0,0.18);
  color: rgba(247,246,240,0.8);
}

.sp-alert--success {
  background: rgba(16,185,129,0.07);
  border: 1px solid rgba(16,185,129,0.18);
  color: rgba(247,246,240,0.8);
}

.sp-alert__icon {
  flex-shrink: 0;
  margin-top: 1px;
}

/* =============================================
   FOOTER (sub-page, mirrors main site)
   ============================================= */

.sp-footer {
  border-top: 1px solid rgba(255,255,255,1);
  margin-top: auto;
}

.sp-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem;
}

.sp-footer__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 1.5rem 0;
}

@media (min-width: 768px) {
  .sp-footer__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.sp-footer__heading {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.sp-footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sp-footer__list a {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.sp-footer__list a:hover {
  text-decoration: underline;
  color: #fff;
}

.sp-footer__bottom {
  display: flex;
  flex-direction: column-reverse;
  gap: 0.5rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--border-subtle);
}

@media (min-width: 1024px) {
  .sp-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.sp-footer__copy {
  font-size: 13px;
  color: #fff;
}

.sp-footer__copy a {
  color: #fff;
  text-decoration: none;
}

.sp-footer__legal {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 14px;
}

@media (min-width: 1024px) {
  .sp-footer__legal {
    flex-direction: row;
    gap: 1rem;
  }
}

.sp-footer__legal a {
  color: #fff;
  text-decoration: none;
}

.sp-footer__legal a:hover {
  text-decoration: underline;
}

.sp-footer__social {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  margin-top: 0.75rem;
}

.sp-footer__social a {
  color: #fff;
  font-size: 1em;
  display: flex;
  align-items: center;
  transition: opacity 0.15s;
}

.sp-footer__social a:hover {
  opacity: 0.75;
  text-decoration: none;
}

/* =============================================
   PAGE-SPECIFIC: SUPPORT PAGE
   ============================================= */

.support-qa {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.support-qa__item {
  border-bottom: 1px solid var(--border-subtle);
}

.support-qa__item:first-child {
  border-top: 1px solid var(--border-subtle);
}

.support-qa__question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  transition: color 0.15s;
}

.support-qa__question:hover {
  color: var(--accent);
}

.support-qa__question h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: inherit;
  flex: 1;
  margin: 0;
}

.support-qa__chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--text-muted);
  transition: transform 0.25s ease, color 0.15s;
}

.support-qa__item--open .support-qa__chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.support-qa__item--open .support-qa__question {
  color: var(--accent);
}

.support-qa__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.support-qa__item--open .support-qa__answer {
  max-height: 800px;
}

.support-qa__answer-inner {
  padding-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.support-qa__answer-inner p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.support-qa__answer-inner a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.support-qa__answer-inner a:hover {
  color: #b8a8f8;
}

.support-qa__answer-inner ul {
  list-style: disc;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.support-qa__answer-inner li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* =============================================
   PAGE-SPECIFIC: PROJECT PAGE
   ============================================= */

.project-section {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.project-section:last-child {
  border-bottom: none;
}

.project-section__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.project-section__title-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.project-section__body {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.project-section__body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.project-section__body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.project-section__body a:hover {
  color: #b8a8f8;
}

.project-section__body strong {
  color: var(--text-primary);
  font-weight: 600;
}

.project-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .project-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .project-team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.project-team-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 1.125rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.project-team-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.project-team-card__role {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.project-team-card__bio {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 0.25rem;
}

.project-tech-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.project-tech-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}

.project-tech-item__bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
  flex-shrink: 0;
}

.project-tech-item__content {
  flex: 1;
}

.project-tech-item__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.125rem;
}

.project-tech-item__desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =============================================
   NUMBER / METRICS STRIP
   ============================================= */

.sp-metrics-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  overflow: hidden;
}

@media (min-width: 768px) {
  .sp-metrics-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.sp-metric {
  background: var(--card-bg);
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: flex-start;
}

.sp-metric__value {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-display);
  line-height: 1;
}

.sp-metric__label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.sp-metric__delta {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-green);
}

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

.sp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 13px;
  color: var(--text-muted);
  padding: 1rem 1.5rem 0;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.sp-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}

.sp-breadcrumb a:hover {
  color: var(--text-secondary);
  text-decoration: underline;
}

.sp-breadcrumb__sep {
  color: var(--text-muted);
  font-size: 11px;
}

.sp-breadcrumb__current {
  color: var(--text-secondary);
  font-weight: 500;
}

/* =============================================
   LINK INLINE STYLE
   ============================================= */

.sp-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}

.sp-link:hover {
  color: #b8a8f8;
}

/* =============================================
   RESPONSIVE UTILITIES
   ============================================= */

@media (max-width: 639px) {
  .sp-nav__links {
    display: none;
  }

  .sp-hero {
    padding: 2rem 1rem 1.5rem;
  }

  .sp-content {
    padding: 0 1rem 3rem;
  }

  .sp-breadcrumb {
    padding: 0.75rem 1rem 0;
  }

  .sp-stat__value {
    font-size: 1.375rem;
  }

  .sp-metric__value {
    font-size: 1.375rem;
  }
}

@media (min-width: 1024px) {
  .sp-hero {
    padding: 4rem 1.5rem 2.5rem;
  }

  .sp-hero__title {
    font-size: 2.5rem;
  }
}