/* ============================================================
   About / How It Works - Scroll-Snap One-Pager
   Design direction: stitched mock -> project-compatible implementation
   ============================================================ */

:root {
  --about-navbar-h: 60px;

  --about-dark: #121315;
  --about-dark-soft: #191b1e;
  --about-light: #d3c6b8;
  --about-light-soft: #e6dfd6;
  --about-text-dark: #34302b;
  --about-text-muted: #6f655d;
  --about-accent: #8a7869;
  --about-accent-soft: #b8a99b;
  --about-white: #ffffff;
}

/* ── Scroll Container ── */

.about-outer {
  overflow: hidden;
  height: calc(100dvh - var(--about-navbar-h));
}

.about-scroll-container {
  height: calc(100dvh - var(--about-navbar-h));
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  overscroll-behavior: contain;
  /* hide native scrollbar — nav dots serve as navigation */
  scrollbar-width: none;
}
.about-scroll-container::-webkit-scrollbar {
  display: none;
}

/* ── Sections ── */
.about-section {
  min-height: calc(100dvh - var(--about-navbar-h));
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  padding: clamp(2.25rem, 4vw, 4.5rem) 1.5rem;
  position: relative;
}

/* ── Modern Fade & Slide Transitions ── */
.about-section > * {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-section.in-view > * {
  opacity: 1;
  transform: translateY(0);
}

/* ── Section colours ── */
.about-section--hero {
  background: linear-gradient(98deg, var(--about-dark) 0%, var(--about-dark-soft) 100%);
  color: var(--about-white);
}

.about-section--concepts {
  background: linear-gradient(
    to bottom,
    #d3c6b8 0%,
    #d3c6b8 45%,
    #ddd0c3 45%,
    #ddd0c3 100%
  );
  color: var(--about-text-dark);
}

.about-section--matchmaking {
  background: linear-gradient(96deg, var(--about-dark) 0%, #111216 100%);
  color: var(--about-white);
}

/* Step 3 — Connect: light beige so the white inquiry modal pops (slightly
   darker than the dashboard beige that follows, to keep the two distinct). */
.about-section--protection {
  background: linear-gradient(to bottom, #d3c6b8 0%, #cdbfb0 100%);
  color: var(--about-text-dark);
}

.about-section--dashboard {
  background: var(--about-light-soft);
  color: var(--about-text-dark);
}

.about-section--cta {
  background: linear-gradient(100deg, #101114 0%, #14161a 100%);
  color: var(--about-white);
}

/* ── Section tag + title ── */
.about-section-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--about-text-muted);
  margin-bottom: 0.55rem;
  opacity: 0.9;
}
.about-section--matchmaking .about-section-tag,
.about-section--hero .about-section-tag {
  color: #a89a8d;
}

.about-section-title {
  font-size: clamp(1.9rem, 4.4vw, 3.15rem);
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.14;
}

.about-section-sublead {
  max-width: 480px;
  margin-inline: auto;
  font-size: 0.95rem;
}

/* ── Hero ── */
.about-hero-icon {
  line-height: 1;
}
.about-hero-svg {
  width: 62px;
  height: 62px;
  display: block;
  opacity: 0.92;
}
.about-hero-title {
  font-size: clamp(2.25rem, 5.8vw, 4.2rem);
  font-weight: 760;
  letter-spacing: -0.03em;
  line-height: 1.04;
}
.about-hero-lead {
  font-size: clamp(0.98rem, 1.9vw, 1.1rem);
  opacity: 0.84;
  max-width: 490px;
  line-height: 1.6;
}

.about-section--hero .btn-warning {
  border-radius: 999px;
  border: 0;
  padding-inline: 1.35rem;
  background: #f2efeb;
  color: #1e1f22;
  box-shadow: none;
  font-weight: 650;
}

.about-section--hero .btn-warning:hover,
.about-section--hero .btn-warning:focus {
  background: #ffffff;
  color: #111214;
}

.about-section--hero .btn-secondary {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: #f6f6f6;
  padding-inline: 1.25rem;
}

.about-section--hero .btn-secondary:hover,
.about-section--hero .btn-secondary:focus {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* ── Concept cards (Listing vs Wanted Ad) ── */
.concept-card {
  border-radius: 1.05rem;
  border: 1px solid rgba(41, 35, 30, 0.1);
  padding: 1.7rem 1.5rem;
  height: 100%;
  background: #f5f2ee;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
/*.concept-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(34, 29, 24, 0.08);
}
*/
.concept-card--listing,
.concept-card--wanted {
  border-color: rgba(50, 43, 37, 0.08);
}

.concept-card__icon {
  font-size: 2.1rem;
  margin-bottom: 0.8rem;
}
.concept-card--listing .concept-card__icon,
.concept-card--wanted .concept-card__icon {
  color: var(--about-accent);
}

.concept-card__title {
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: var(--about-text-dark);
}

.concept-list {
  max-width: 210px;
  margin-inline: auto;
  line-height: 1.55;
  text-align: left;
}

.concept-list li {
  margin-bottom: 0.28rem;
}

.concept-list li:last-child {
  margin-bottom: 0;
}
.concept-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.73rem;
  font-weight: 500;
  padding: 0.16rem 0.56rem;
  border-radius: 2rem;
  margin-bottom: 0.25rem;
  white-space: nowrap;
}
.concept-badge--listing,
.concept-badge--wanted {
  background: transparent;
  color: var(--about-text-muted);
  padding-inline: 0;
}

.concept-badge--note {
  background: rgba(33, 29, 25, 0.15);
  color: var(--about-text-dark);
}

.concept-or-divider {
  color: var(--about-text-muted);
  opacity: 0.45;
  line-height: 1;
}

/* ── Persona separator label ── */
.scenario-section-label {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--about-text-muted);
  white-space: nowrap;
}

/* ── Persona cards (four ways to use Swapride) ── */
.persona-card {
  background: #f5f2ee;
  border: 1px solid rgba(50, 43, 37, 0.1);
  border-radius: 1.05rem;
  padding: 1.2rem 1.1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.persona-num {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  border: 2px solid var(--about-accent);
  color: var(--about-accent);
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
}
.persona-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--about-text-dark);
}
.persona-desc {
  font-size: 0.84rem;
  line-height: 1.4;
  color: var(--about-text-dark);
  opacity: 0.78;
  margin-bottom: 0.85rem;
  flex: 1;
}
.persona-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.persona-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.26rem 0.6rem;
  border-radius: 2rem;
  white-space: nowrap;
}
.persona-tag--listing {
  background: var(--about-text-dark);
  color: #fff;
}
.persona-tag--wanted {
  background: rgba(52, 48, 43, 0.1);
  color: var(--about-text-dark);
}

@media (max-width: 575.98px) {
  .persona-tag {
    font-size: 0.6rem;
    padding-inline: 0.5rem;
  }
}

.scenario-bottom-note {
  font-size: 0.875rem;
  white-space: normal;
  max-width: 600px;
  color: var(--about-text-muted);
}

/* ── Step timeline ── */
.about-steps {
  display: flex;
  flex-direction: column;
}
.about-step {
  display: flex;
  gap: 1.25rem;
  position: relative;
}
.about-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 1.35rem;
  top: 2.75rem;
  bottom: 0;
  width: 2px;
  background: rgba(52, 48, 43, 0.18);
}
.about-step__num {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(52, 48, 43, 0.08);
  border: 1px solid rgba(52, 48, 43, 0.2);
  color: var(--about-text-dark);
  font-weight: 700;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.about-step__body {
  padding-bottom: 1.75rem;
  flex: 1;
}
.about-step__title {
  font-weight: 700;
  font-size: 0.97rem;
  margin-bottom: 0.2rem;
  color: var(--about-text-dark);
}
.about-step__desc {
  font-size: 0.82rem;
  color: var(--about-text-muted);
  margin-bottom: 0;
  line-height: 1.55;
}
.about-protection-sub {
  color: var(--about-text-muted);
}

.about-lock-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(214, 196, 176, 0.14);
  border: 1px solid rgba(214, 196, 176, 0.35);
  border-radius: 2rem;
  padding: 0.45rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #d8ccbf;
}

/* ══ Matchmaking section (Step 2) ══ */
.about-match-sublead {
  max-width: 640px;
}
.about-match-divider {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--about-accent-soft);
  margin-bottom: 1.1rem;
}

/* Engine flow steps */
.engine-step {
  background: var(--about-dark-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.9rem;
  padding: 1.1rem 1rem;
  height: 100%;
}
.engine-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--about-accent-soft);
}
.engine-title {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #fff;
}
.engine-desc {
  font-size: 0.78rem;
  line-height: 1.45;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
}

/* Per-profile match cards */
.match-profile {
  background: var(--about-dark-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.1rem;
  padding: 1.3rem 1.2rem;
  height: 100%;
}
.match-icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: rgba(210, 196, 181, 0.12);
  color: var(--about-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
}
.match-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: #fff;
}
.match-row {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.84rem;
  line-height: 1.4;
  color: #fff;
}
.match-text-muted {
  color: rgba(255, 255, 255, 0.6);
}
.match-pill {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.22rem 0.5rem;
  border-radius: 2rem;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 0.08rem;
}
.match-pill--owns {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}
.match-pill--finds {
  background: var(--about-light);
  color: var(--about-text-dark);
}

/* ══ Inquiry modal mockup (Step 3) ══ */
.modal-mock {
  background: #fff;
  border-radius: 1.3rem;
  box-shadow: 0 30px 70px -22px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  color: var(--about-text-dark);
  max-width: 420px;
}
.modal-mock__head {
  background: var(--about-light-soft);
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(52, 48, 43, 0.08);
}
.modal-mock__body {
  padding: 1.4rem;
}
.modal-mock__label {
  font-size: 0.78rem;
  margin-bottom: 0.3rem;
  color: var(--about-text-muted);
}
.modal-mock__muted {
  color: var(--about-text-muted);
}
.mock-thumb {
  width: 46px;
  height: 46px;
  border-radius: 0.6rem;
  flex-shrink: 0;
  background: repeating-linear-gradient(45deg, #d8cdc0, #d8cdc0 6px, #cfc2b2 6px, #cfc2b2 12px);
}
.mock-input {
  background: #f4f0eb;
  border-radius: 0.75rem;
  padding: 0.8rem 1rem;
  font-size: 0.84rem;
  color: var(--about-text-muted);
}
.mock-attach {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  background: #fff;
  border: 1px dashed rgba(52, 48, 43, 0.25);
  border-radius: 0.85rem;
  padding: 0.7rem 0.9rem;
  color: var(--about-accent);
}
.mock-send {
  background: var(--about-accent);
  color: #fff;
  border: 0;
  border-radius: 2rem;
  padding: 0.7rem 1rem;
  font-weight: 700;
}
.mock-reveal {
  background: var(--about-text-dark);
  color: #fff;
  border-radius: 0.9rem;
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.mock-reveal i {
  color: var(--about-accent-soft);
}

/* ── Dashboard feature grid ── */
.dash-feature {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.35rem 0.1rem;
  background: transparent;
  border-radius: 0;
  border: 0;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.dash-feature:hover {
  transform: translateY(-1px);
  box-shadow: none;
}
.dash-feature__icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: #f5f1ec !important;
  color: var(--about-accent) !important;
  border: 1px solid rgba(65, 56, 48, 0.14);
  flex-shrink: 0;
}

.dash-feature__icon--brown {
  background: #f5f1ec !important;
  color: var(--about-accent) !important;
}

.dash-feature__icon--orange {
  background: #f5f1ec !important;
  color: var(--about-accent) !important;
}

.dash-feature__icon--red {
  background: #f5f1ec !important;
  color: var(--about-accent) !important;
}

.dash-feature__icon--purple {
  background: #f5f1ec !important;
  color: var(--about-accent) !important;
}

.dash-feature__icon--cyan {
  background: #f5f1ec !important;
  color: var(--about-accent) !important;
}

.dash-feature__icon--green {
  background: #f5f1ec !important;
  color: var(--about-accent) !important;
}
.dash-feature__label {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
}
.dash-feature__sub {
  font-size: 0.74rem;
  opacity: 0.78;
  margin-bottom: 0;
  line-height: 1.3;
  color: var(--about-text-muted);
}

/* ── Nav dots (desktop only) ── */
.about-nav-dots {
  position: fixed;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  z-index: 1040;
}
.about-nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.26);
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  padding: 0;
}
.about-nav-dot.active {
  background: #f0e5d8;
  border-color: #f0e5d8;
  transform: scale(1.4);
}
/* On light sections make dots visible */
.about-nav-dots.on-light .about-nav-dot {
  background: rgba(41, 34, 29, 0.25);
  border-color: rgba(41, 34, 29, 0.3);
}
.about-nav-dots.on-light .about-nav-dot.active {
  background: #3d352e;
  border-color: #3d352e;
}

/* ── Scroll hint arrow ── */
.about-scroll-hint {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.5;
  font-size: 1.3rem;
  animation: aboutBounce 1.7s ease-in-out infinite;
}

.about-scroll-hint--brown {
  color: var(--about-text-muted);
}
@keyframes aboutBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ── CTA section ── */
.about-cta-logo {
  height: 70px;
  width: auto;
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.about-cta-title {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 760;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.about-cta-lead {
  font-size: 0.95rem;
  opacity: 0.7;
}

.about-cta-lead--constrained {
  max-width: 500px;
  margin-inline: auto;
}

.about-dashboard-btn {
  border-radius: 999px;
  border: 0;
  background: #3d352e;
  color: #fff;
  font-weight: 650;
}

.about-dashboard-btn:hover,
.about-dashboard-btn:focus {
  background: #54483d;
  color: #fff;
}

.about-section--cta .btn-warning {
  border-radius: 999px;
  background: #f2efeb;
  color: #17181a;
  border: 0;
}

.about-section--cta .btn-secondary {
  border-radius: 999px;
  border: 0;
  background: #877767;
  color: #fff;
}

.about-section--cta .btn-secondary:hover,
.about-section--cta .btn-secondary:focus {
  background: #9b8979;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .about-nav-dots { display: none; }

  .about-quote-card {
    width: min(340px, 92vw);
    height: min(340px, 92vw);
  }
}
@media (max-width: 767.98px) {
  .about-section { padding: 2.5rem 1rem; }
  .concept-or-divider { transform: rotate(90deg); }

  .about-step {
    gap: 0.85rem;
  }

  .about-step__num {
    width: 2.35rem;
    height: 2.35rem;
  }
}

/* ── Hero quote card (static card, only text fades) ── */
.about-quote-card {
  width: 25rem;
  height: 25rem;
  border-radius: 50%;
  border: 1px solid rgba(229, 218, 202, 0.35);
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.about-quote-mark {
  font-size: 3.6rem;
  line-height: 0.8;
  padding-bottom: 0.8rem;
  color: rgba(233, 220, 203, 0.76);
  font-family: Georgia, "Times New Roman", serif;
  display: block;
  margin-bottom: 0.15rem;
  user-select: none;
}
.about-quote-text {
  color: rgba(242, 236, 228, 0.74);
  font-size: 1.2rem;
  line-height: 1.62;
  margin-bottom: 0;
  transition: opacity 0.35s ease;
  max-width: 230px;
}
.about-quote-text--out {
  opacity: 0;
}
.about-quote-dots {
  display: flex;
  gap: 0.5rem;
}
.about-quote-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.35);
  display: inline-block;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.35s ease, transform 0.2s ease;
}
.about-quote-dot:hover {
  transform: scale(1.35);
  background-color: rgba(255, 255, 255, 0.6);
}
.about-quote-dot.active {
  background-color: #ece3d8;
}

/* Keep mobile overrides below base rules so they win in cascade. */
@media (max-width: 991.98px) {
  .about-quote-card {
    width: min(340px, 92vw);
    height: min(340px, 92vw);
    margin-inline: auto;
    padding: 2rem;
  }

  .about-quote-text {
    font-size: 1.05rem;
    line-height: 1.5;
    max-width: min(260px, 78vw);
  }
}

@media (max-width: 575.98px) {
  .about-quote-card {
    width: 100%;
    max-width: 24rem;
    height: auto;
    min-height: 18.5rem;
    border-radius: 1.2rem;
    padding: 1.4rem 1.1rem;
  }

  .about-quote-mark {
    font-size: 2.4rem;
    padding-bottom: 0.35rem;
  }

  .about-quote-text {
    font-size: 0.98rem;
    line-height: 1.45;
    max-width: none;
  }
}

/* ── Dark mode ── */
[data-theme="dark"] .about-section--hero {
  background: linear-gradient(100deg, #0c0d10 0%, #161920 100%);
}

[data-theme="dark"] .about-section--concepts {
  background: linear-gradient(
    to bottom,
    #25211d 0%,
    #25211d 56%,
    #2d2823 56%,
    #2d2823 100%
  );
  color: #f0ebe4;
}

[data-theme="dark"] .about-section--matchmaking {
  background: linear-gradient(100deg, #0e0f12 0%, #171a1f 100%);
}

/* Step 3 stays a dark beige in dark theme (mirrors --concepts). */
[data-theme="dark"] .about-section--protection {
  background: linear-gradient(to bottom, #25211d 0%, #2d2823 100%);
  color: #f0ebe4;
}
[data-theme="dark"] .about-protection-sub,
[data-theme="dark"] .about-step__title {
  color: #f0ebe4;
}
[data-theme="dark"] .about-step__desc {
  color: #cabfb4;
}
[data-theme="dark"] .modal-mock {
  background: #37312c;
  color: #f0ebe4;
}
[data-theme="dark"] .modal-mock__head {
  background: #2f2923;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .modal-mock__label,
[data-theme="dark"] .modal-mock__muted {
  color: #cabfb4;
}
[data-theme="dark"] .mock-input {
  background: #2f2923;
  color: #cabfb4;
}
[data-theme="dark"] .mock-attach {
  background: #3f3730;
  border-color: rgba(255, 255, 255, 0.2);
}
[data-theme="dark"] .persona-card {
  background: #37312c;
  border-color: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .persona-name,
[data-theme="dark"] .persona-desc {
  color: #f0ebe4;
}
[data-theme="dark"] .persona-tag--listing {
  background: #d6c6b7;
  color: #211d19;
}
[data-theme="dark"] .persona-tag--wanted {
  background: rgba(255, 255, 255, 0.1);
  color: #e8ddd2;
}

[data-theme="dark"] .about-section--dashboard {
  background: #2b251f;
  color: #efe8df;
}

[data-theme="dark"] .about-section--cta {
  background: linear-gradient(100deg, #0a0b0e 0%, #13161b 100%);
}

[data-theme="dark"] .about-section-tag,
[data-theme="dark"] .scenario-section-label,
[data-theme="dark"] .scenario-bottom-note {
  color: #c2b6ab;
}

[data-theme="dark"] .about-section--concepts .text-muted,
[data-theme="dark"] .about-section--dashboard .text-muted,
[data-theme="dark"] .dash-feature__sub {
  color: #cabfb4 !important;
}

[data-theme="dark"] .concept-card {
  background: #37312c;
  border-color: rgba(255, 255, 255, 0.08);
  color: #f0ebe4;
}

[data-theme="dark"] .concept-card__title {
  color: #f0ebe4;
}

[data-theme="dark"] .concept-badge--listing,
[data-theme="dark"] .concept-badge--wanted {
  color: #d7ccc2;
}

[data-theme="dark"] .concept-list {
  color: #d7ccc2 !important;
}

[data-theme="dark"] .concept-badge--note {
  background: rgba(255, 255, 255, 0.09);
  color: #f0ebe4;
}

[data-theme="dark"] .persona-num {
  border-color: #9f8d7d;
  color: #d6c6b7;
}

[data-theme="dark"] .about-lock-badge {
  background: rgba(221, 207, 191, 0.13);
  border-color: rgba(221, 207, 191, 0.32);
  color: #ebe0d2;
}

[data-theme="dark"] .about-step:not(:last-child)::after {
  background: rgba(255, 255, 255, 0.18);
}

[data-theme="dark"] .about-step__num {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
  color: #f0ebe4;
}

[data-theme="dark"] .dash-feature,
[data-theme="dark"] .dash-feature__label {
  color: #f0ebe4 !important;
}

[data-theme="dark"] .dash-feature__icon {
  background: #3f3730 !important;
  color: #d6c6b7 !important;
  border-color: rgba(255, 255, 255, 0.12);
}

[data-theme="dark"] .about-nav-dots.on-light .about-nav-dot {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
}

[data-theme="dark"] .about-nav-dots.on-light .about-nav-dot.active {
  background: #efe5d8;
  border-color: #efe5d8;
}
