:root {
  --brand: #6bcf13;
  --brand-hover: #59b011;
  --border-dark: #262626;
  --neutral-900: #1a1a1a;
  --neutral-800: #262626;
  --neutral-700: #404040;
  --neutral-500: #737373;
  --neutral-100: #fafafa;
  --text-link: #1d65d7;
  --green-yuzu-500: #6bcf13;
  --gradient-start: #a8f45d;
  --gradient-end: #fee36c;
}

/* =====================
   SHARED PAGE BASE
   ===================== */

.sub-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #000;
  color: #f5f5f5;
  font-family: var(--font-inter, ui-sans-serif, system-ui, sans-serif);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* =====================
   HEADER (shared)
   ===================== */

.sp-header {
  width: 100%;
  height: 70px;
  background: #000;
  border-bottom: 1px solid #1a1a1a;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  position: sticky;
  top: 0;
  z-index: 50;
}

.sp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  gap: 1rem;
}

.sp-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.sp-logo img {
  height: 2rem;
  width: auto;
  display: block;
}

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

.sp-nav a {
  font-size: 0.875rem;
  font-weight: 600;
  color: #a3a3a3;
  text-decoration: none;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  transition: color 0.15s, background-color 0.15s;
}

.sp-nav a:hover {
  color: #fff;
  background-color: #1a1a1a;
}

.sp-nav a.active {
  color: #6bcf13;
}

/* =====================
   MAIN CONTENT WRAPPER
   ===================== */

.sp-main {
  flex: 1;
  width: 100%;
  background-color: #000;
  background-image: url("grid.png");
  background-repeat: repeat;
  position: relative;
}

.sp-main::before {
  content: "";
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 240px;
  height: 240px;
  border-radius: 9999px;
  background: #6bcf13;
  opacity: 0.35;
  filter: blur(250px);
  pointer-events: none;
  z-index: 0;
}

.sp-main::after {
  content: "";
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 240px;
  height: 240px;
  border-radius: 9999px;
  background: #6bcf13;
  opacity: 0.35;
  filter: blur(250px);
  pointer-events: none;
  z-index: 0;
}

.sp-container {
  position: relative;
  z-index: 1;
  max-width: 1024px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

@media (min-width: 768px) {
  .sp-container {
    padding: 4rem 2rem 6rem;
  }
}

@media (min-width: 1024px) {
  .sp-container {
    padding: 5rem 2rem 7rem;
  }
}

/* =====================
   PAGE HERO / HEADING
   ===================== */

.sp-page-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .sp-page-hero {
    margin-bottom: 4.5rem;
  }
}

.sp-page-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background-color: rgba(107, 207, 19, 0.1);
  border: 1px solid rgba(107, 207, 19, 0.25);
  color: #6bcf13;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.sp-page-h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #f5f5f5;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
  max-width: 720px;
}

@media (min-width: 768px) {
  .sp-page-h1 {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .sp-page-h1 {
    font-size: 3rem;
  }
}

.sp-page-subtitle {
  font-size: 1rem;
  line-height: 1.65;
  color: #a3a3a3;
  max-width: 640px;
  margin: 0;
}

@media (min-width: 768px) {
  .sp-page-subtitle {
    font-size: 1.0625rem;
  }
}

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

.sp-divider {
  border: none;
  border-top: 1px solid #1a1a1a;
  margin: 2.5rem 0;
}

/* =====================
   Q&A PAGE STYLES
   ===================== */

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

.qa-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: #a3a3a3;
  max-width: 700px;
  margin: 0 0 2.5rem;
}

.qa-intro a {
  color: #6bcf13;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}

.qa-intro a:hover {
  color: #a8f45d;
}

.qa-item {
  border-bottom: 1px solid #1a1a1a;
  padding: 2rem 0;
}

.qa-item:first-child {
  border-top: 1px solid #1a1a1a;
}

.qa-question {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #f5f5f5;
  margin: 0 0 0.875rem;
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .qa-question {
    font-size: 1.125rem;
  }
}

.qa-question-num {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  background: rgba(107, 207, 19, 0.1);
  border: 1px solid rgba(107, 207, 19, 0.25);
  color: #6bcf13;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
  letter-spacing: 0;
}

.qa-answer {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #a3a3a3;
  margin: 0;
  padding-left: 2.5rem;
}

@media (min-width: 768px) {
  .qa-answer {
    font-size: 1rem;
  }
}

.qa-answer strong {
  color: #e5e5e5;
  font-weight: 600;
}

.qa-answer a {
  color: #6bcf13;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}

.qa-answer a:hover {
  color: #a8f45d;
}

.qa-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 900px) {
  .qa-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0 3rem;
  }

  .qa-grid .qa-item:nth-child(odd) {
    border-right: 1px solid #1a1a1a;
    padding-right: 3rem;
  }
}

/* =====================
   TEAM PAGE STYLES
   ===================== */

.team-section {
  margin-bottom: 4rem;
}

.team-section:last-of-type {
  margin-bottom: 0;
}

.team-h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: #f5f5f5;
  letter-spacing: -0.01em;
  margin: 0 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #1a1a1a;
  position: relative;
}

.team-h2::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 3rem;
  height: 2px;
  background: linear-gradient(to right, #6bcf13, #a8f45d);
  border-radius: 9999px;
}

@media (min-width: 768px) {
  .team-h2 {
    font-size: 1.625rem;
  }
}

.team-body {
  font-size: 0.9375rem;
  line-height: 1.78;
  color: #a3a3a3;
  margin: 0 0 1rem;
}

@media (min-width: 768px) {
  .team-body {
    font-size: 1rem;
  }
}

.team-body:last-child {
  margin-bottom: 0;
}

.team-body strong {
  color: #e5e5e5;
  font-weight: 600;
}

.team-body a {
  color: #6bcf13;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}

.team-body a:hover {
  color: #a8f45d;
}

/* Team cards grid */

.team-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

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

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

.team-card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid #262626;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: border-color 0.2s;
}

.team-card:hover {
  border-color: rgba(107, 207, 19, 0.35);
}

.team-card-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #6bcf13 0%, #a8f45d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: #111;
  flex-shrink: 0;
  margin-bottom: 0.5rem;
}

.team-card-name {
  font-size: 1rem;
  font-weight: 700;
  color: #f5f5f5;
  margin: 0;
  line-height: 1.3;
}

.team-card-role {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6bcf13;
  margin: 0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.team-card-bio {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #737373;
  margin: 0.25rem 0 0;
}

/* Values / pillars list */

.team-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.25rem;
}

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

.team-pillar {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid #1a1a1a;
  border-radius: 0.875rem;
  padding: 1.25rem 1.5rem;
  transition: border-color 0.2s;
}

.team-pillar:hover {
  border-color: rgba(107, 207, 19, 0.25);
}

.team-pillar-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #f5f5f5;
  margin: 0 0 0.4rem;
}

.team-pillar-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #737373;
  margin: 0;
}

/* Stats row */

.team-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.team-stat {
  flex: 1;
  min-width: 140px;
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid #1a1a1a;
  border-radius: 0.875rem;
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.team-stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: #6bcf13;
  line-height: 1.1;
  background: linear-gradient(to left, #a8f45d, #fee36c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.team-stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #737373;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 0.375rem;
}

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

.sp-back-wrap {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid #1a1a1a;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.sp-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  overflow: hidden;
}

.sp-btn-primary {
  background: linear-gradient(to left, #a8f45d, #fee36c);
  color: #1a1a1a;
  box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, 0.11);
}

.sp-btn-primary:hover {
  opacity: 0.9;
  color: #111;
}

.sp-btn-secondary {
  background: transparent;
  color: #a3a3a3;
  border: 1px solid #262626;
}

.sp-btn-secondary:hover {
  background: #1a1a1a;
  color: #f5f5f5;
  border-color: #404040;
}

.sp-btn-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* =====================
   INLINE HIGHLIGHT
   ===================== */

.sp-highlight {
  color: #6bcf13;
  font-weight: 600;
}

.sp-highlight-gold {
  color: #ffaa15;
  font-weight: 600;
}

/* =====================
   FOOTER (shared sub-pages)
   ===================== */

.sp-footer {
  background: #000;
  border-top: 1px solid #1a1a1a;
  padding: 2.5rem 1.5rem;
  position: relative;
  z-index: 2;
}

.sp-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(193, 161, 53, 0.35), transparent);
  pointer-events: none;
}

.sp-footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sp-footer-copy {
  font-size: 0.75rem;
  font-weight: 500;
  color: #fafafa;
}

.sp-footer-links {
  display: flex;
  gap: 1.5rem;
}

.sp-footer-links a {
  font-size: 0.75rem;
  font-weight: 500;
  color: #fafafa;
  text-decoration: none;
  transition: color 0.15s;
}

.sp-footer-links a:hover {
  color: #6bcf13;
}

/* =====================
   UTILITY: NOTICE BOX
   ===================== */

.sp-notice {
  background: rgba(107, 207, 19, 0.07);
  border: 1px solid rgba(107, 207, 19, 0.2);
  border-radius: 0.875rem;
  padding: 1.125rem 1.375rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: #a3a3a3;
  margin: 1.5rem 0;
}

.sp-notice strong {
  color: #6bcf13;
}

/* =====================
   RESPONSIVE TWEAKS
   ===================== */

@media (max-width: 480px) {
  .sp-page-h1 {
    font-size: 1.75rem;
  }

  .sp-container {
    padding: 2rem 1rem 4rem;
  }

  .sp-back-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-stat-value {
    font-size: 1.375rem;
  }

  .qa-answer {
    padding-left: 0;
  }

  .qa-question {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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