:root {
  --faq-primary: #CCFF00;
  --faq-bg: #000000;
  --faq-card-bg: #151514;
  --faq-border: rgba(255, 255, 255, 0.2);
  --faq-text: #ffffff;
  --faq-text-muted: rgba(255, 255, 255, 0.6);
  --faq-secondary-bg: #262627;
  --faq-font-heading: var(--font-heading, 'Space Grotesk', sans-serif);
  --faq-font-body: var(--font-text, 'Geist', sans-serif);
}

/* ============================================================
   FAQ SECTION ON INDEX.HTML
   ============================================================ */

.faq-section-main {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background-color: var(--faq-bg);
  margin-top: 80px;
  padding-bottom: 60px;
}

.faq-section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.faq-seo-h1 {
  font-family: var(--faq-font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--faq-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.faq-seo-subtitle {
  font-family: var(--faq-font-body);
  font-size: 1.125rem;
  color: var(--faq-text-muted);
  margin-bottom: 3rem;
  max-width: 640px;
}

.faq-divider-top {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 60px;
}

/* ============================================================
   ACCORDION STYLES
   ============================================================ */

.faq-accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--faq-border);
}

.faq-item:first-child {
  border-top: 1px solid var(--faq-border);
}

.faq-question-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  text-align: left;
  transition: color 0.3s ease;
}

.faq-question-btn:hover .faq-question-text {
  color: var(--faq-primary);
}

.faq-question-text {
  font-family: var(--faq-font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--faq-text);
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 1.4;
  transition: color 0.3s ease;
  margin: 0;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid var(--faq-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--faq-text-muted);
  transition: transform 0.3s ease, stroke 0.3s ease;
}

.faq-item.active .faq-icon {
  background-color: var(--faq-primary);
  border-color: var(--faq-primary);
}

.faq-item.active .faq-icon svg {
  stroke: #000000;
  transform: rotate(180deg);
}

.faq-answer-wrapper {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer-wrapper {
  max-height: 600px;
}

.faq-answer-text {
  font-family: var(--faq-font-body);
  font-size: 1rem;
  color: var(--faq-text-muted);
  line-height: 1.7;
  padding-bottom: 1.5rem;
  margin: 0;
}

/* ============================================================
   FAQ FOOTER LINKS ON INDEX.HTML
   ============================================================ */

.faq-footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.faq-footer-link {
  font-family: var(--faq-font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.faq-footer-link-primary {
  background-color: var(--faq-primary);
  color: #000000;
}

.faq-footer-link-primary:hover {
  background-color: #b8e600;
  color: #000000;
}

.faq-footer-link-secondary {
  background-color: var(--faq-secondary-bg);
  color: var(--faq-text);
}

.faq-footer-link-secondary:hover {
  background-color: rgba(38, 38, 39, 0.8);
  color: var(--faq-text);
}

/* ============================================================
   SHARED PAGE STYLES (faq/index.html & about/index.html)
   ============================================================ */

.page-wrapper {
  background-color: #000000;
  color: #ffffff;
  min-height: 100vh;
  font-family: var(--faq-font-body, 'Geist', sans-serif);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-nav {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
}

.page-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.page-nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.page-nav-logo img {
  height: 32px;
  width: auto;
}

.page-nav-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.page-nav-link {
  font-family: var(--faq-font-heading, 'Space Grotesk', sans-serif);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  background-color: #262627;
  color: #ffffff;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.page-nav-link:hover {
  background-color: rgba(38, 38, 39, 0.8);
  color: #ffffff;
}

.page-nav-link-accent {
  background-color: #CCFF00;
  color: #000000;
}

.page-nav-link-accent:hover {
  background-color: #b8e600;
  color: #000000;
}

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

.page-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(204, 255, 0, 0.1);
  border: 1px solid rgba(204, 255, 0, 0.2);
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  font-family: var(--faq-font-heading, 'Space Grotesk', sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #CCFF00;
  margin-bottom: 1.5rem;
}

.page-hero-title {
  font-family: var(--faq-font-heading, 'Space Grotesk', sans-serif);
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 700;
  color: #CCFF00;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.page-hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 0;
}

.page-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
  margin: 0;
}

/* ============================================================
   FAQ PAGE CONTENT
   ============================================================ */

.faq-page-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.faq-page-accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
}

.faq-category-label {
  font-family: var(--faq-font-heading, 'Space Grotesk', sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
  margin-top: 2.5rem;
}

.faq-category-label:first-child {
  margin-top: 0;
}

/* ============================================================
   ABOUT PAGE CONTENT
   ============================================================ */

.about-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

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

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.about-card {
  background-color: #151514;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  padding: 1.75rem;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.about-card:hover {
  border-color: rgba(204, 255, 0, 0.3);
  background-color: #1e1e1d;
}

.about-card-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(204, 255, 0, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.about-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: #CCFF00;
}

.about-card-title {
  font-family: var(--faq-font-heading, 'Space Grotesk', sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.about-card-text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

.about-section-title {
  font-family: var(--faq-font-heading, 'Space Grotesk', sans-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  margin-top: 4rem;
}

.about-section-title:first-child {
  margin-top: 0;
}

.about-text-block {
  max-width: 760px;
}

.about-text-block p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.about-text-block p:last-child {
  margin-bottom: 0;
}

.about-highlight {
  color: #CCFF00;
  font-weight: 600;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

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

.about-stat-card {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.about-stat-value {
  font-family: var(--faq-font-heading, 'Space Grotesk', sans-serif);
  font-size: 2rem;
  font-weight: 700;
  color: #CCFF00;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about-stat-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

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

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

.about-team-card {
  background-color: #151514;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.5rem;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about-team-name {
  font-family: var(--faq-font-heading, 'Space Grotesk', sans-serif);
  font-size: 1.0625rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.about-team-role {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #CCFF00;
}

.about-team-bio {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-top: 0.25rem;
}

/* ============================================================
   PAGE FOOTER / CTA SECTION
   ============================================================ */

.page-cta {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.page-cta-inner {
  background-color: rgba(204, 255, 0, 0.04);
  border: 1px solid rgba(204, 255, 0, 0.15);
  border-radius: 0.75rem;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .page-cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.page-cta-title {
  font-family: var(--faq-font-heading, 'Space Grotesk', sans-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.page-cta-text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 480px;
}

.page-cta-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--faq-font-heading, 'Space Grotesk', sans-serif);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  background-color: #CCFF00;
  color: #000000;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, filter 0.3s ease;
  white-space: nowrap;
}

.btn-primary:hover {
  background-color: #b8e600;
  color: #000000;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--faq-font-heading, 'Space Grotesk', sans-serif);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  background-color: #262627;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.btn-secondary:hover {
  background-color: rgba(38, 38, 39, 0.8);
  color: #ffffff;
}

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

.page-footer {
  background-color: #080907;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem 1.5rem;
}

.page-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .page-footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.page-footer-logo img {
  height: 32px;
  width: auto;
}

.page-footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.page-footer-link {
  font-size: 0.875rem;
  color: #CCFF00;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-footer-link:hover {
  color: rgba(204, 255, 0, 0.7);
}

.page-footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
}

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

.page-breadcrumb {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

.page-breadcrumb a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-breadcrumb a:hover {
  color: #CCFF00;
}

.page-breadcrumb-sep {
  color: rgba(255, 255, 255, 0.2);
}

.page-breadcrumb-current {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   ABOUT PAGE TIMELINE
   ============================================================ */

.about-timeline {
  position: relative;
  padding-left: 2rem;
  margin-top: 2rem;
}

.about-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #CCFF00, rgba(204, 255, 0, 0.1));
}

.about-timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.about-timeline-item:last-child {
  padding-bottom: 0;
}

.about-timeline-dot {
  position: absolute;
  left: -2.375rem;
  top: 0.25rem;
  width: 12px;
  height: 12px;
  background-color: #CCFF00;
  border-radius: 50%;
  flex-shrink: 0;
}

.about-timeline-year {
  font-family: var(--faq-font-heading, 'Space Grotesk', sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #CCFF00;
  margin-bottom: 0.375rem;
}

.about-timeline-heading {
  font-family: var(--faq-font-heading, 'Space Grotesk', sans-serif);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.375rem;
}

.about-timeline-body {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

/* ============================================================
   ALERT / NOTICE BANNER ON SUBPAGES
   ============================================================ */

.page-notice {
  background-color: rgba(242, 203, 4, 0.1);
  border: 1px solid rgba(242, 203, 4, 0.3);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: #f2cb04;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-family: var(--faq-font-heading, 'Space Grotesk', sans-serif);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

@media (max-width: 639px) {
  .faq-seo-h1 {
    font-size: 2rem;
  }

  .page-hero-title {
    font-size: 2.25rem;
  }

  .page-cta-inner {
    padding: 2rem 1.25rem;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-nav-links {
    gap: 0.5rem;
  }
}

@media (max-width: 767px) {
  .faq-section-main {
    margin-top: 48px;
  }

  .about-section-title {
    font-size: 1.375rem;
    margin-top: 3rem;
  }
}