:root {
  --lc-radius: 0.625rem;
  --lc-transition: 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
}

body.lc-page {
  margin: 0;
  padding: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* ===== PAGE WRAPPER ===== */
.lc-page-wrapper {
  flex: 1;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.lc-container {
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (min-width: 640px) {
  .lc-container {
    padding-inline: 2rem;
  }
}

@media (min-width: 768px) {
  .lc-container {
    padding-inline: 3rem;
  }
}

@media (min-width: 1280px) {
  .lc-container {
    padding-inline: 5rem;
  }
}

/* ===== HEADER / NAV ===== */
.lc-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--border);
  background-color: var(--background);
}

.lc-header-inner {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
  padding-inline: 1.5rem;
}

@media (min-width: 768px) {
  .lc-header-inner {
    padding-inline: 3rem;
  }
}

.lc-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  color: var(--foreground);
}

.lc-logo svg {
  height: 1rem;
  width: auto;
}

@media (min-width: 768px) {
  .lc-logo svg {
    height: 1.5rem;
  }
}

.lc-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .lc-nav {
    display: flex;
  }
}

.lc-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: calc(var(--lc-radius) - 2px);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--foreground);
  transition: background-color var(--lc-transition), color var(--lc-transition);
}

.lc-nav-link:hover {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.lc-nav-link.active {
  background-color: color-mix(in oklab, var(--accent) 50%, transparent);
  color: var(--accent-foreground);
}

.lc-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ===== HERO SECTION ===== */
.lc-hero {
  padding-block: 3rem 2rem;
  background-color: var(--background);
}

@media (min-width: 768px) {
  .lc-hero {
    padding-block: 4rem 2.5rem;
  }
}

.lc-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background-color: color-mix(in oklab, var(--primary) 15%, transparent);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.lc-hero h1 {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--foreground);
  margin: 0;
}

@media (min-width: 768px) {
  .lc-hero h1 {
    font-size: 2.25rem;
  }
}

.lc-hero-subtitle {
  font-size: 1rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0;
  line-height: 1.625;
}

@media (min-width: 768px) {
  .lc-hero-subtitle {
    font-size: 1.125rem;
  }
}

/* ===== DIVIDER ===== */
.lc-divider {
  width: 100%;
  height: 1px;
  background-color: var(--border);
  margin-block: 0;
}

/* ===== MAIN CONTENT AREA ===== */
.lc-content {
  padding-block: 2rem 4rem;
}

@media (min-width: 768px) {
  .lc-content {
    padding-block: 3rem 5rem;
  }
}

/* ===== SECTION ===== */
.lc-section {
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .lc-section {
    margin-bottom: 4rem;
  }
}

.lc-section:last-child {
  margin-bottom: 0;
}

.lc-section-header {
  margin-bottom: 1.5rem;
}

.lc-section h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0 0 0.5rem 0;
  line-height: 1.375;
}

@media (min-width: 768px) {
  .lc-section h2 {
    font-size: 1.5rem;
  }
}

.lc-section-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
  line-height: 1.625;
}

/* ===== PROSE ===== */
.lc-prose {
  max-width: 65ch;
}

.lc-prose p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: color-mix(in oklab, var(--foreground) 85%, transparent);
  margin: 0 0 1rem 0;
}

.lc-prose p:last-child {
  margin-bottom: 0;
}

.lc-prose a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--lc-transition);
}

.lc-prose a:hover {
  color: var(--foreground);
}

.lc-prose strong {
  font-weight: 600;
  color: var(--foreground);
}

.lc-prose ul {
  margin: 0 0 1rem 0;
  padding-left: 1.5rem;
  list-style-type: disc;
}

.lc-prose ul li {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: color-mix(in oklab, var(--foreground) 85%, transparent);
  margin-bottom: 0.375rem;
}

/* ===== FAQ ACCORDION ===== */
.lc-faq-list {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lc-faq-item {
  border-bottom: 1px solid color-mix(in oklab, var(--muted-foreground) 10%, transparent);
}

.lc-faq-item:first-child {
  border-top: 1px solid color-mix(in oklab, var(--muted-foreground) 10%, transparent);
}

.lc-faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--foreground);
  transition: color var(--lc-transition);
  font-family: inherit;
}

.lc-faq-question:hover {
  color: var(--foreground);
}

.lc-faq-question-text {
  flex: 1;
  line-height: 1.5;
}

.lc-faq-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.lc-faq-item.open .lc-faq-icon {
  transform: rotate(180deg);
}

.lc-faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 350ms cubic-bezier(0.4, 0, 0.2, 1), padding 350ms cubic-bezier(0.4, 0, 0.2, 1);
  padding-bottom: 0;
}

.lc-faq-item.open .lc-faq-answer {
  max-height: 600px;
  padding-bottom: 1rem;
}

.lc-faq-answer p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--muted-foreground);
  margin: 0 0 0.75rem 0;
}

.lc-faq-answer p:last-child {
  margin-bottom: 0;
}

.lc-faq-answer a {
  color: var(--foreground);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--lc-transition);
}

.lc-faq-answer a:hover {
  color: var(--primary);
}

.lc-faq-answer ul {
  margin: 0 0 0.75rem 0;
  padding-left: 1.5rem;
  list-style-type: disc;
}

.lc-faq-answer ul li {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

/* ===== ABOUT SECTIONS ===== */
.lc-about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .lc-about-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.lc-about-card {
  background-color: var(--card);
  border-radius: var(--lc-radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lc-about-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: calc(var(--lc-radius) + 2px);
  background-color: color-mix(in oklab, var(--primary) 12%, transparent);
  flex-shrink: 0;
}

.lc-about-card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--foreground);
}

.lc-about-card h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0;
  line-height: 1.4;
}

.lc-about-card p {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-foreground);
  margin: 0;
}

/* ===== STATS ROW ===== */
.lc-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

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

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

.lc-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.2;
}

.lc-stat-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.4;
}

/* ===== TEAM SECTION ===== */
.lc-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

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

.lc-team-card {
  background-color: var(--card);
  border-radius: var(--lc-radius);
  padding: 1.25rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lc-team-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: color-mix(in oklab, var(--primary) 20%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.lc-team-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0;
}

.lc-team-role {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 500;
  margin: 0;
}

.lc-team-bio {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  margin: 0;
}

/* ===== FEATURE LIST ===== */
.lc-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lc-feature-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}

.lc-feature-dot {
  flex-shrink: 0;
  margin-top: 0.4rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: var(--primary);
}

.lc-feature-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.lc-feature-title {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--foreground);
  margin: 0;
}

.lc-feature-desc {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-foreground);
  margin: 0;
}

/* ===== INLINE LINK STYLES ===== */
.lc-link {
  color: var(--foreground);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--lc-transition);
}

.lc-link:hover {
  color: var(--primary);
}

.lc-link-muted {
  color: var(--muted-foreground);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--lc-transition);
}

.lc-link-muted:hover {
  color: var(--foreground);
}

/* ===== RETURN HOME BUTTON ===== */
.lc-return-home {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: calc(var(--lc-radius) - 2px);
  border: 1px solid var(--border);
  background-color: var(--background);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--lc-transition), color var(--lc-transition);
  box-shadow: 0 1px 3px 0px rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1);
}

.lc-return-home:hover {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.lc-return-home svg {
  width: 1rem;
  height: 1rem;
}

.lc-return-home-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
}

/* ===== PRIMARY BUTTON ===== */
.lc-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: calc(var(--lc-radius) - 2px);
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity var(--lc-transition);
  box-shadow: 0 1px 3px 0px rgba(0,0,0,0.1);
}

.lc-btn-primary:hover {
  opacity: 0.9;
}

/* ===== BREADCRUMB ===== */
.lc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  padding-block: 1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

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

.lc-breadcrumb a:hover {
  color: var(--foreground);
}

.lc-breadcrumb-sep {
  color: color-mix(in oklab, var(--muted-foreground) 50%, transparent);
  user-select: none;
}

.lc-breadcrumb-current {
  color: var(--foreground);
  font-weight: 500;
}

/* ===== CALLOUT / HIGHLIGHT BOX ===== */
.lc-callout {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  border-radius: var(--lc-radius);
  background-color: color-mix(in oklab, var(--muted) 50%, transparent);
  border: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  margin-block: 1.5rem;
}

.lc-callout-icon {
  flex-shrink: 0;
  margin-top: 0.125rem;
  width: 1.125rem;
  height: 1.125rem;
  color: var(--muted-foreground);
}

.lc-callout p {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-foreground);
  margin: 0;
}

.lc-callout a {
  color: var(--foreground);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== FOOTER ===== */
.lc-footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  background-color: var(--background);
}

.lc-footer-inner {
  padding-inline: 1.5rem;
  padding-block: 3rem 4rem;
}

@media (min-width: 768px) {
  .lc-footer-inner {
    padding-inline: 3rem;
    padding-block: 3.5rem;
  }
}

.lc-footer-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .lc-footer-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
}

.lc-footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .lc-footer-links {
    flex-direction: row;
    gap: 1rem;
  }
}

.lc-footer-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: none;
  width: fit-content;
  transition: color var(--lc-transition);
}

.lc-footer-link:hover {
  color: var(--primary);
}

.lc-footer-link svg {
  width: 1rem;
  height: 1rem;
}

.lc-footer-separator {
  width: 100%;
  height: 1px;
  background-color: var(--border);
  margin-block: 1.25rem;
}

.lc-footer-bottom {
  display: flex;
  flex-direction: column-reverse;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .lc-footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

.lc-footer-copy {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.lc-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .lc-footer-nav {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.lc-footer-nav-link {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: none;
  width: fit-content;
  transition: color var(--lc-transition);
}

.lc-footer-nav-link:hover {
  color: var(--primary);
}

/* ===== DARK MODE ===== */
.dark .lc-about-card {
  background-color: var(--card);
}

.dark .lc-stat-item {
  background-color: var(--card);
}

.dark .lc-team-card {
  background-color: var(--card);
}

.dark .lc-return-home {
  background-color: color-mix(in oklab, var(--input) 30%, transparent);
  border-color: var(--input);
}

.dark .lc-return-home:hover {
  background-color: color-mix(in oklab, var(--input) 50%, transparent);
}

/* ===== RESPONSIVE UTILITIES ===== */
.lc-hidden-mobile {
  display: none;
}

@media (min-width: 768px) {
  .lc-hidden-mobile {
    display: block;
  }
}

.lc-hidden-desktop {
  display: block;
}

@media (min-width: 768px) {
  .lc-hidden-desktop {
    display: none;
  }
}

/* ===== FAQ PAGE SPECIFIC ===== */
.lc-faq-page .lc-hero {
  padding-bottom: 1.5rem;
}

.lc-faq-intro {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--muted-foreground);
  max-width: 52rem;
  margin: 0 0 2rem 0;
}

.lc-faq-intro a {
  color: var(--foreground);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--lc-transition);
}

.lc-faq-intro a:hover {
  color: var(--primary);
}

/* ===== ABOUT PAGE SPECIFIC ===== */
.lc-about-page .lc-hero {
  padding-bottom: 1.5rem;
}

.lc-about-intro {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--muted-foreground);
  max-width: 52rem;
  margin: 0 0 2rem 0;
}

.lc-about-intro a {
  color: var(--foreground);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--lc-transition);
}

.lc-about-intro a:hover {
  color: var(--primary);
}

.lc-values-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lc-value-item {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
}

.lc-value-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.lc-value-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0;
}

.lc-value-desc {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-foreground);
  margin: 0;
}

/* ===== TWO-COL LAYOUT ===== */
.lc-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .lc-two-col {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.lc-two-col-wide {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .lc-two-col-wide {
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
  }
}

/* ===== TIMELINE / PROCESS ===== */
.lc-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lc-timeline-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.5rem;
  position: relative;
}

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

.lc-timeline-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.lc-timeline-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background-color: color-mix(in oklab, var(--primary) 15%, transparent);
  border: 1px solid color-mix(in oklab, var(--primary) 30%, transparent);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--foreground);
  flex-shrink: 0;
}

.lc-timeline-line {
  width: 1px;
  flex: 1;
  background-color: var(--border);
  margin-top: 0.375rem;
  min-height: 1rem;
}

.lc-timeline-item:last-child .lc-timeline-line {
  display: none;
}

.lc-timeline-content {
  padding-bottom: 0.25rem;
  flex: 1;
}

.lc-timeline-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0 0 0.375rem 0;
  padding-top: 0.25rem;
}

.lc-timeline-desc {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-foreground);
  margin: 0;
}