/* ══════════════════════════════
   SECTION 1 — HERO / WHAT IS WEALTH LABS
══════════════════════════════ */
.wbs-abt-hero {
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.scroll-bar {
    position: fixed;
    top: 74px;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--glob-muted), var(--glob-purple), var(--glob-purple-glow));
    z-index: 1000;
    width: 0%;
    transition: width 0.1s linear;
}

.hero-bg-lines {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  opacity: 0.06;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}

.hero-title .gold::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--glob-border);
  border: 0.5px solid var(--glob-border);
  border-radius: 14px;
  overflow: hidden;
}
.hstat {
  background: var(--glob-surface2);
  padding: 20px 16px;
  text-align: center;
  transition: background 0.2s;
}
.hstat-num {
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--glob-purple-light), #c4b5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hstat-label {
  color: var(--glob-muted);
  font-size: 12px;
  margin-top: 4px;
  font-weight: 500;
}

/* RIGHT CARD */
.hero-card {
  background: var(--glob-surface);
  border: 0.5px solid var(--glob-border);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--glob-purple),
    transparent
  );
}
.hero-card-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--glob-purple-light);
  margin-bottom: 20px;
}
.hero-card-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--glob-text);
  margin-bottom: 16px;
  line-height: 1.25;
}
.hero-card p {
  font-size: 14px;
  color: var(--glob-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.feature-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fchip {
  background: rgba(139, 92, 246, 0.09);
  border: 0.5px solid rgba(139, 92, 246, 0.2);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--glob-purple-light);
  /* color: #d1d5db; */
  display: flex;
  align-items: center;
  gap: 10px;
}
.fchip span {
  color: var(--glob-purple-light);
  font-size: 12px;
}

.define-nm-sec,
.founder-section , .vision-section {
  padding: 100px 0;
  border-top: 1px solid var(--glob-border);
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(139, 92, 246, 0.04) 50%,
    transparent 100%
  );
}
.wab-shd {
  text-align: center;
  margin: 0 auto 60px;
  max-width: 680px;
}
.wab-shd1 {
  text-align: left;
}
.wab-shd h2,
.wab-shd1 h2 {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--glob-white);
}
.wab-shd p {
  color: var(--glob-muted);
  max-width: 570px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.65;
}
.wab-shd1 p {
  color: var(--glob-muted);
  font-size: 17px;
  line-height: 1.65;
}

.wabs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 56px;
}

.wabs-acronym {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wabs-letter {
  display: flex;
  align-items: stretch;
  border: 0.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  cursor: default;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.wabs-letter:hover {
  border-color: rgb(139 92 246 / 70%);
  transform: translateX(4px);
}
.wabs-letter-char {
  background: rgb(139 92 246 / 15%);
  border-right: 0.5px solid var(--glob-border);
  width: 75px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "syne", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--glob-purple);
  /* padding: 19px; */
}
.wabs-letter-content {
  padding: 18px 20px;
  background: var(--glob-surface);
  flex: 1;
}
.wabs-letter-word {
  font-family: "Syne", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.wabs-letter-desc {
  font-size: 13px;
  color: var(--glob-muted);
  line-height: 1.6;
}

.wabs-right p {
  font-size: 15px;
  color: var(--glob-muted);
  line-height: 1.85;
  margin-bottom: 18px;
}

.quote-box {
  background: var(--glob-surface);
  border-left: 3px solid var(--glob-purple);
  border-radius: 0 12px 12px 0;
  padding: 24px 40px;
  margin-top: 28px;
}
.quote-box p {
  font-size: 15px;
  font-style: italic;
  color: var(--glob-muted);
  margin: 0;
  line-height: 1.8;
}

.created-info-sec,
.mission-wb-section {
  padding: 100px 0;
  position: relative;
}
.created-info-sec::before,
.mission-wb-section::before {
  content: "";
  position: absolute;
  inset: 0px 0 auto;
  height: 330px;
  background:
    radial-gradient(
      circle at 16% 20%,
      rgba(139, 92, 246, 0.05),
      transparent 34%
    ),
    radial-gradient(circle at 82% 22%, rgba(59, 130, 246, 0.1), transparent 26%);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 56px;
}

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--glob-surface);
  border: 0.5px solid var(--glob-border);
  border-radius: 12px;
  transition:
    border-color 0.25s,
    background 0.25s,
    transform 0.25s;
  cursor: default;
}
.pain-item:hover {
  border-color: var(--glob-border-mid);
  transform: translateX(4px);
}
.pain-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    rgba(109, 40, 217, 0.25),
    rgba(139, 92, 246, 0.1)
  );
  border: 0.5px solid rgba(139, 92, 246, 0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.pain-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--glob-text);
  margin-bottom: 3px;
}
.pain-item p {
  font-size: 13px;
  color: var(--glob-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.why-right p {
  font-size: 15px;
  color: var(--glob-muted);
  line-height: 1.85;
  margin-bottom: 18px;
}

.founder-quote-card {
  position: relative;
  background: var(--glob-surface);
  border: 0.5px solid var(--glob-border);
  border-radius: 16px;
  padding: 32px;
  overflow: hidden;
  margin-top: 28px;
}
.founder-quote-card::after {
  content: '"';
  position: absolute;
  bottom: -20px;
  right: 16px;
  font-family: "Syne", sans-serif;
  font-size: 120px;
  font-weight: 800;
  color: var(--glob-purple);
  opacity: 0.06;
  line-height: 1;
}
.fq-text {
  font-size: 16px;
  font-style: italic;
  color: var(--glob-muted);
  line-height: 1.85;
  margin-bottom: 20px;
}
.fq-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fq-dot {
  width: 32px;
  height: 2px;
  background: var(--glob-purple-light);
}
.fq-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--glob-text);
}
.fq-role {
  font-size: 12px;
  color: var(--glob-muted2);
}

/* ══════════════════════════════
   SECTION 4 — FOUNDER STORY
══════════════════════════════ */

.founder-section {
  position: relative;
}

.founder-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 56px;
}

/* FOUNDER PROFILE CARD */
.founder-profile {
  position: sticky;
  top: 90px;
  background: var(--glob-surface);
  border: 0.5px solid var(--glob-border-mid);
  border-radius: 20px;
  overflow: hidden;
}
.founder-img-wrap {
  position: relative;
  height: 280px;
  background: #000;
  /* background: linear-gradient(135deg, #0e1520 0%, #1a2035 50%, #0e1520 100%); */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

img.founder-wb-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Geometric founder avatar */
.founder-avatar-art {
  position: relative;
  width: 140px;
  height: 140px;
}
.fav-circle-outer {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotate-slow 20s linear infinite;
  position: relative;
}
.fav-circle-outer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--glob-purple);
  transform: translateX(-50%);
}
.fav-circle-inner {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a2440, #0e1520);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.fav-initials {
  font-family: "Syne", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.fav-ring {
  position: absolute;
  border-radius: 50%;
  border: 0.5px solid rgba(200, 155, 60, 0.2);
  animation: pulse-ring 3s ease-in-out infinite;
}
.fav-ring:nth-child(1) {
  width: 160px;
  height: 160px;
  animation-delay: 0s;
}
.fav-ring:nth-child(2) {
  width: 185px;
  height: 185px;
  animation-delay: 0.7s;
}
.fav-ring:nth-child(3) {
  width: 210px;
  height: 210px;
  animation-delay: 1.4s;
}
@keyframes pulse-ring {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.02);
  }
}
@keyframes rotate-slow {
  to {
    transform: rotate(360deg);
  }
}

.founder-badge {
  position: absolute;
  bottom: 5px;
  left: 16px;
  right: 16px;
  background: rgba(15, 21, 41, 0.25);
  border: 0.5px solid var(--glob-border);
  border-radius: 10px;
  padding: 10px 14px;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  gap: 10px;
}
.fb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}
.fb-text {
  font-size: 12px;
}
.fb-text strong {
  color: var(--text);
  font-weight: 500;
  display: block;
  font-size: 13px;
}

.founder-meta {
  padding: 24px;
}
.founder-name {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--glob-text);
  margin-bottom: 4px;
}
.founder-title-text {
  font-size: 13px;
  color: var(--glob-purple-light);
  margin-bottom: 16px;
}
.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ftag {
  font-size: 11px;
  color: var(--glob-purple-light);
  background: var(--glob-border);
  border: 0.5px solid var(--glob-purple-glow);
  border-radius: 4px;
  padding: 4px 10px;
}

/* FOUNDER TIMELINE */
.founder-story {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.story-chapter {
  position: relative;
  padding: 0 0 48px 32px;
  border-left: 1px solid rgb(139 92 246 / 20%);
}
.story-chapter:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}
.chapter-dot {
  position: absolute;
  left: -5px;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--glob-purple-light);
  border: 2px solid var(--glob-purple-light);
}
.chapter-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--glob-purple-light);
  margin-bottom: 10px;
}
.chapter-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--glob-text);
  margin-bottom: 12px;
}
.chapter-body {
  font-size: 15px;
  color: var(--glob-muted);
  line-height: 1.85;
  margin-bottom: 0;
}
.chapter-body + .chapter-body {
  margin-top: 12px;
}

.chapter-highlight {
  background: var(--glob-surface);
  border: 0.5px solid var(--glob-border);
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 16px;
  font-size: 14px;
  color: var(--glob-muted);
  font-style: italic;
  border-left: 2px solid var(--glob-purple);
}

/* ══════════════════════════════
   SECTION 5 — MISSION
══════════════════════════════ */

.mission-intro {
  max-width: 640px;
  margin-bottom: 56px;
}
.mission-intro p {
  font-size: 18px;
  color: var(--text-sec);
  line-height: 1.8;
}

.mission-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 50px;
}
.mc {
  background: var(--glob-surface);
    border: 1px solid var(--glob-border);
    border-radius: 16px;
    padding: 32px 28px;
    transition: transform .25s, border-color .25s, box-shadow .25s;
}
.mc:hover {
    transform: translateY(-4px);
    border-color: rgba(139,92,246,.3);
    box-shadow: 0 8px 32px rgba(139,92,246,.1);
}
.mc-icon {
  font-size: 32px;
    margin-bottom: 16px;
}
.mc-icon i {
    color: var(--glob-purple);
    font-size: 28px;
}
.mc h3 {
      font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--glob-white);
    margin-bottom: 8px;
}
.mc p {
  font-size: 14.5px;
    color: var(--glob-muted);
    line-height: 1.6;
    margin: 0;
}

.mission-cta {
  margin-top: 48px;
  padding: 40px;
  background: var(--glob-surface);
  border: 0.5px solid var(--glob-border-mid);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.mission-cta-left h3 {
  font-family: 'Outfit', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: var(--glob-white);
    line-height: 1.15;
    margin-bottom: 14px;
}
.mission-cta-left p {
  font-size: 16px;
    color: var(--glob-muted);
    line-height: 1.7;
    margin-bottom: 0;
}
.cta-btn {
  display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--glob-violet), var(--glob-purple));
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    white-space: nowrap;
}
.cta-btn:hover {
  transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(139, 92, 246, .35);
    color: #fff;
}



/* ══════════════════════════════
   SECTION 6 — PRODUCT VISION
══════════════════════════════ */
.vision-hero {
  background: var(--glob-surface);
  border: 0.5px solid var(--glob-border-mid);
  border-radius: 24px;
  padding: 56px;
  margin-top: 56px;
  position: relative; overflow: hidden;
}
.vision-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.vision-big-text {
  font-family: 'outfit', sans-serif;
  font-size: 54px; font-weight: 800;
  line-height: 1.08; letter-spacing: -0.02em;
  color: var(--glob-text);
}
.vision-big-text .gold { color: var(--glob-purple); }
.vision-right p { font-size: 16px; color: var(--glob-muted); line-height: 1.85; margin-bottom: 14px; }
.vision-right p:last-child { margin-bottom: 0; }

.roadmap { margin-top: 40px; display: flex; flex-direction: column; gap: 10px; }
.rm-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  background: var(--glob-surface);
  border: 0.5px solid var(--glob-border);
  border-radius: 12px;
  transition: border-color 0.25s, background 0.25s;
  cursor: default;
}
.rm-item:hover { border-color: var(--glob-border-mid); }
.rm-badge {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px;
  white-space: nowrap; flex-shrink: 0;
}
.rb-live { background: rgba(29,158,117,0.12); color: #1D9E75; border: 0.5px solid rgba(29,158,117,0.3); }
.rb-next {
    background: rgba(139,95,255,0.1);
    color: var(--glob-purple);
    border: 0.5px solid var(--glob-purple-glow);
}
.rb-future {
    background: #5069ab2e;
    color: #7889b5;
    border: 0.5px solid #5069abb5;
}
.rm-content { font-size: 14px; color: var(--glob-muted); }
.rm-content strong { color: var(--glob-text); font-weight: 500; }







/* *********************
  RESPONSIVE START
*********************** */
@media(max-width:575px){
  .wab-shd h2 br, .wab-shd1 h2 br {
    display: none;
}
}

@media(max-width:767px){
  .wabs-grid {
    grid-template-columns: 1fr;
    gap: 40px;
}
.why-grid {
      grid-template-columns: 1fr;
    gap: 40px;
}
.founder-layout {
    grid-template-columns: 1fr;
    gap: 40px;
}
.mission-cards {
    grid-template-columns: 1fr;
}
.mission-cta {
    flex-direction: column;
        padding: 25px;
}
.vision-hero-grid {
  grid-template-columns: 1fr;
    gap: 30px;
}
.rm-item {
    flex-direction: column;
    align-items: flex-start;
}

.hero-card {
    padding: 25px 20px;
}
.fchip {
    padding: 5px 10px;
    font-size: 10.5px;
}
.hero-card p {
    font-size: 13px;
}
.hero-bg-lines {
  display: none;
}
.wab-shd p {
    font-size: 14px;
}
.scroll-bar {
    top: 57px;
}
.vision-big-text {
    font-size: 32px;
}
.vision-hero {
    padding: 30px;
    margin-top: 40px;
}
.vision-right p {
    font-size: 14px;
}
.created-info-sec, .mission-wb-section {
    padding: 60px 0;
}
.founder-profile {
    position: unset;
}
.define-nm-sec, .founder-section, .vision-section {
    padding: 60px 0;
}
.wbs-abt-hero {
    padding: 120px 0 60px;
}
.story-chapter {
    padding: 0 0 30px 20px;
}
.mc {
    padding: 20px;
}
.mc-icon i {
    font-size: 24px;
}
.mission-cta-left h3 {
    font-size: 28px;
}

.hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
}

}

@media(min-width:768px) and (max-width:991px) {
.hero-grid {
    grid-template-columns: 1fr;
}
.wab-h1 {
    font-size: 46px;
}
.hero-sub {
    font-size: 17px;
}
.hero-bg-lines {
    display: none;
}
.wbs-abt-hero {
    padding: 120px 0 80px;
}
.wabs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.quote-box {
    padding: 15px 25px;
}
.define-nm-sec, .founder-section, .vision-section , .created-info-sec, .mission-wb-section  {
    padding: 70px 0;
}
.why-grid {
    gap: 30px;
}
.founder-layout {
    grid-template-columns: 300px 1fr;
        gap: 30px;
}
.mc {
    padding: 20px;
}
.mission-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
}
.vision-hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
}
.vision-hero {
    padding: 35px;
}
.scroll-bar {
    top: 63px;
}
.mission-cards {
    grid-template-columns: repeat(2, 1fr);
}

}

@media(min-width:992px) and (max-width:1200px) {
  .wab-h1 {
    font-size: 48px;
}
h1.wab-h1 br {
    display: none;
}
.wabs-grid {
    gap: 40px;
}
.why-grid , .vision-hero-grid {
    gap: 40px;
}
.scroll-bar {
    top: 63px;
}
.quote-box {
    padding: 18px 30px;
}
.founder-quote-card {
    padding: 25px;
}

}