@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

:root {
  --bg: #050508;
  --surface: #0d0d14;
  --border: rgba(255, 255, 255, 0.07);
  --a1: #7b5ef8;
  --a2: #00e5c0;
  --a3: #ff4fd8;
  --text: #e8e8f0;
  --muted: #6b6b80
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden
}

/* 3D WebGL Canvas Layer */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

/* Accessibility */
:focus-visible {
  outline: 2px solid var(--a1);
  outline-offset: 2px;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 4rem;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  background: rgba(5, 5, 8, 0.8)
}

.logo {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 1.1rem;
  background: linear-gradient(90deg, var(--a1), var(--a2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none
}

.nav-links a {
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s
}

.nav-links a:hover {
  color: var(--text)
}

.nav-btn {
  font-size: .8rem;
  font-family: 'Space Mono', monospace;
  padding: .5rem 1.3rem;
  border: 1px solid var(--a1);
  color: var(--a1);
  border-radius: 3px;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  transition: all .2s
}

.nav-btn:hover {
  background: var(--a1);
  color: #fff
}

/* Mobile Menu Toggle & Nav Button */
.nav-join {
  height: 40px;
  min-width: 170px;
  font-size: 0.8rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  position: relative;
}

.nav-explore-icon {
  background: transparent;
  border: none;
  color: #000;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: 0.5rem;
  transition: color 0.4s ease;
}

.nav-actions:hover .nav-explore-icon {
  color: rgba(255, 255, 255, 0.3);
}

.nav-explore-icon:hover {
  color: var(--a2) !important;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 101;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
  position: relative
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 60% 40% at 20% 50%, rgba(123, 94, 248, .18) 0%, transparent 70%), radial-gradient(ellipse 50% 35% at 80% 40%, rgba(0, 229, 192, .13) 0%, transparent 70%), radial-gradient(ellipse 40% 30% at 50% 85%, rgba(255, 79, 216, .1) 0%, transparent 70%);
  pointer-events: none
}

.hero>* {
  position: relative;
  z-index: 1
}

.eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--a2);
  border: 1px solid rgba(0, 229, 192, .3);
  padding: .35rem 1rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 2rem
}

.hero h1 {
  font-size: clamp(3rem, 9vw, 7.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.04em
}

.hero h1 .grad {
  background: linear-gradient(135deg, var(--a1), var(--a3), var(--a2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.hero p {
  margin-top: 2rem;
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.75
}

.actions {
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center
}

.btn-p {
  padding: .9rem 2.2rem;
  background: linear-gradient(135deg, var(--a1), var(--a3));
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(123, 94, 248, .35);
  transition: opacity .2s, transform .2s
}

.btn-p:hover {
  opacity: .85;
  transform: translateY(-2px)
}

.btn-g {
  padding: .9rem 2.2rem;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 4px;
  font-size: .9rem;
  text-decoration: none;
  transition: all .2s
}

.btn-g:hover {
  border-color: var(--muted);
  background: rgba(255, 255, 255, .04)
}

.btn-t {
  padding: .9rem 2.2rem;
  border: 1px solid var(--a2);
  color: var(--a2);
  background: rgba(0, 229, 192, 0.05);
  border-radius: 4px;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s ease;
  box-shadow: 0 0 15px rgba(0, 229, 192, 0.1);
  cursor: pointer;
}

.btn-t:hover {
  background: rgba(0, 229, 192, 0.15);
  box-shadow: 0 0 25px rgba(0, 229, 192, 0.3);
  transform: translateY(-2px);
  color: #fff;
  border-color: #fff;
}

.btn-t.active-explore {
  border-color: var(--a3);
  color: var(--a3);
  background: rgba(255, 79, 216, 0.05);
  box-shadow: 0 0 15px rgba(255, 79, 216, 0.1);
}

.btn-t.active-explore:hover {
  background: rgba(255, 79, 216, 0.15);
  box-shadow: 0 0 25px rgba(255, 79, 216, 0.3);
  color: #fff;
  border-color: #fff;
}

/* JOIN BUTTON */
.custom-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  transition: background 0.2s;
}

.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--a2);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px rgba(0, 224, 255, 0.5);
}

.custom-slider.a3-slider::-webkit-slider-thumb {
  background: var(--a3);
  box-shadow: 0 0 10px rgba(255, 79, 216, 0.4);
}

.custom-slider::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  border: 1px solid var(--border);
}

.custom-slider:focus {
  outline: none;
}

.join-btn {
  padding: .9rem 2.2rem;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 4px;
  font-size: .9rem;
  font-family: 'Space Grotesk', sans-serif;
  background: transparent;
  cursor: pointer;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  min-width: 210px;
  height: 48px
}

.join-btn .btn-default {
  transition: opacity .25s, transform .25s;
  display: block;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center
}

.join-btn .btn-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .25s, transform .25s;
  color: var(--a2);
  font-weight: 600;
  letter-spacing: .03em;
  font-size: .88rem
}

.join-btn:hover .btn-default {
  opacity: 0;
  transform: translateY(-10px)
}

.join-btn:hover .btn-hover {
  opacity: 1;
  transform: translateY(0)
}

.join-btn:hover {
  border-color: var(--a2);
  box-shadow: 0 0 20px rgba(0, 229, 192, .15);
  background: rgba(0, 229, 192, .04)
}

#synthesis-output {
  margin: 2rem 0;
  text-align: left;
  line-height: 1.8;
  font-size: 0.95rem;
  font-family: 'Space Mono', monospace;
  color: var(--a3);
  background: rgba(10, 20, 25, 0.6);
  border: 1px solid var(--a2);
  padding: 1.5rem;
  border-radius: 4px;
  box-shadow: 0 0 15px rgba(0, 224, 255, 0.05), inset 0 0 20px rgba(0, 224, 255, 0.02);
  position: relative;
  overflow: hidden;
}

#synthesis-output::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
  z-index: 1;
}

.line-reveal {
  opacity: 1;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 2px rgba(89, 219, 241, 0.4);
}

.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: .75rem 0;
  background: var(--surface)
}

.ticker {
  display: flex;
  animation: tick 30s linear infinite;
  white-space: nowrap
}

.t-item {
  font-family: 'Space Mono', monospace;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 3rem
}

.t-item b {
  color: var(--a1);
  font-weight: 400;
  margin-right: .5rem
}

@keyframes tick {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.wrap {
  padding: 7rem 4rem;
  max-width: 1200px;
  margin: 0 auto
}

.lbl {
  font-family: 'Space Mono', monospace;
  font-size: .67rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--a2);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: .6rem
}

.lbl::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--a2)
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 1.5rem
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center
}

.about-text p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 1.2rem
}

.about-text strong {
  color: var(--text)
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem
}

.stat {
  padding: 1.8rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  position: relative;
  overflow: hidden
}

.stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--a1), var(--a2))
}

.stat-n {
  font-family: 'Space Mono', monospace;
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--a1), var(--a2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.stat-l {
  font-size: .78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: .3rem
}

.exp-bg {
  background: var(--surface);
  padding: 7rem 0
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 3.5rem
}

.exp-card {
  background: var(--surface);
  padding: 2.5rem;
  transition: background .3s
}

.exp-card:hover {
  background: #12121e
}

.exp-icon {
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  width: 28px;
}

.exp-icon svg {
  width: 100%;
  height: auto;
}

.exp-card.t1 .exp-icon {
  color: var(--a1);
  stroke: var(--a1);
}

.exp-card.t2 .exp-icon {
  color: var(--a2);
  stroke: var(--a2);
}

.exp-card.t3 .exp-icon {
  color: var(--a3);
  stroke: var(--a3);
}

.exp-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: .7rem
}

.exp-card p {
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.7
}

.tag {
  display: inline-block;
  margin-top: 1.2rem;
  font-family: 'Space Mono', monospace;
  font-size: .63rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 20px
}

.tp {
  border: 1px solid rgba(123, 94, 248, .4);
  color: var(--a1)
}

.tt {
  border: 1px solid rgba(0, 229, 192, .4);
  color: var(--a2)
}

.tk {
  border: 1px solid rgba(255, 79, 216, .4);
  color: var(--a3)
}

.mf {
  background: linear-gradient(135deg, rgba(123, 94, 248, .08), rgba(0, 229, 192, .04));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 7rem 4rem;
  text-align: center
}

.mf blockquote {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -.02em;
  max-width: 700px;
  margin: 0 auto
}

.mf em {
  font-style: normal;
  background: linear-gradient(90deg, var(--a1), var(--a3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

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

.tc {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
  transition: transform 3s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 3s;
  position: relative;
}

.tc:hover {
  transform: translateY(-10px) scale(1.15);
  border-color: rgba(0, 229, 192, .4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 229, 192, 0.2);
  z-index: 2;
}

.ta {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem
}

.ta svg {
  width: 48px;
  height: 48px;
}

.tc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
  transition: transform 3s ease;
}

.tc:hover .tc-img {
  transform: scale(1.15);
}

.ta1 {
  background: linear-gradient(135deg, rgba(123, 94, 248, .25), rgba(255, 79, 216, .15));
  color: var(--a1);
}

.ta2 {
  background: linear-gradient(135deg, rgba(0, 229, 192, .2), rgba(123, 94, 248, .15));
  color: var(--a2);
}

.ta3 {
  background: linear-gradient(135deg, rgba(255, 79, 216, .2), rgba(0, 229, 192, .1));
  color: var(--a3);
}

.ta4 {
  background: linear-gradient(135deg, rgba(123, 94, 248, .15), rgba(0, 229, 192, .2));
  color: var(--a1);
}

.ti {
  padding: 1.4rem
}

.tn {
  font-weight: 600;
  font-size: .95rem
}

.tr {
  font-size: .73rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .25rem
}

.td {
  margin-top: .8rem;
  font-size: .7rem;
  font-family: 'Space Mono', monospace;
  color: var(--a2)
}

.cta {
  padding: 8rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(123, 94, 248, .15) 0%, transparent 70%)
}

.cta-in {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.cta p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem
}

footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface)
}

.fl {
  display: flex;
  gap: 2rem;
  list-style: none
}

.fl a {
  font-size: .78rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: .06em;
  transition: color .2s
}

.fl a:hover {
  color: var(--text)
}

.fc {
  font-size: .72rem;
  color: var(--muted);
  font-family: 'Space Mono', monospace
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

/* ═══════ WHY MODAL ═══════ */
#why-overlay,
#collab-overlay,
#why-article-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #020204;
  display: none;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  padding: 4rem 1rem;
}

#why-overlay.active,
#collab-overlay.active,
#why-article-overlay.active {
  display: flex
}

#quest-output {
  max-height: 60vh;
  overflow-y: auto;
  text-align: left;
  background: rgba(10, 20, 25, 0.6);
  border: 1px solid var(--a2);
  padding: 2rem;
  border-radius: 4px;
  font-family: 'Space Mono', monospace;
  box-shadow: 0 0 15px rgba(0, 224, 255, 0.05), inset 0 0 20px rgba(0, 224, 255, 0.02);
  position: relative;
}

#quest-output::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
  z-index: 1;
}

#quest-output>div {
  position: relative;
  z-index: 2;
}

.why-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
  z-index: 10
}

.why-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--a1), var(--a2));
  transition: width .6s cubic-bezier(.4, 0, .2, 1);
  width: 0%
}

.why-close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  font-family: 'Space Mono', monospace;
  font-size: .75rem;
  color: var(--muted);
  background: none;
  border: 1px solid var(--border);
  padding: .4rem 1rem;
  border-radius: 3px;
  cursor: pointer;
  transition: all .2s;
  z-index: 10
}

.why-close:hover {
  color: var(--text);
  border-color: var(--muted)
}

/* orb background inside modal */
.why-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0
}

.why-orbs::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 94, 248, .12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbPulse 6s ease-in-out infinite
}

.why-orbs::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 192, .08) 0%, transparent 70%);
  top: 30%;
  left: 70%;
  transform: translate(-50%, -50%);
  animation: orbPulse 8s ease-in-out infinite reverse
}

@keyframes orbPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: .6
  }

  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1
  }
}

.why-step,
.question-container {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 780px;
  padding: 2rem;
  position: relative;
  z-index: 5;
  animation: stepIn .5s cubic-bezier(.4, 0, .2, 1)
}

.why-modal {
  position: relative;
  max-width: 800px;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin: auto;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.why-step.active,
.question-container.active {
  display: flex
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.why-step-num {
  font-family: 'Space Mono', monospace;
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem
}

.why-truth {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.03em;
  margin-bottom: 1.5rem
}

.hl {
  background: linear-gradient(135deg, var(--a1), var(--a3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.hl2 {
  background: linear-gradient(135deg, var(--a2), var(--a1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.why-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 58ch;
  margin: 0 auto 2.5rem
}

.why-chips {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.2rem;
  max-width: 580px
}

.chip {
  font-size: .75rem;
  font-family: 'Space Mono', monospace;
  letter-spacing: .04em;
  padding: .35rem .9rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: none;
  cursor: pointer;
  transition: all .2s
}

.chip:hover,
.chip.selected {
  border-color: var(--a1);
  color: var(--a1);
  background: rgba(123, 94, 248, .1)
}

.why-resonate {
  width: 100%;
  max-width: 560px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .95rem;
  color: var(--text);
  resize: none;
  height: 90px;
  transition: border-color .2s;
  margin-bottom: 1.5rem
}

.why-resonate:focus {
  outline: none;
  border-color: var(--a1)
}

.why-resonate::placeholder {
  color: var(--muted)
}

.why-chip.selected {
  background: rgba(0, 229, 192, .1);
  border-color: var(--a2);
  color: var(--text);
  box-shadow: 0 0 15px rgba(0, 229, 192, .2)
}

.why-chip.collab-tech-chip.selected,
.why-chip.collab-time-chip.selected {
  background: rgba(123, 94, 248, 0.15);
  border-color: var(--a1);
  color: var(--text);
  box-shadow: 0 0 15px rgba(123, 94, 248, 0.3);
}

.why-options input[type="text"],
.why-options input[type="email"],
.why-options input[type="url"],
.why-options textarea {
  transition: all 0.2s ease;
  outline: none;
}

.why-options input:focus,
.why-options textarea:focus {
  border-color: var(--a1) !important;
  box-shadow: 0 0 12px rgba(123, 94, 248, 0.25);
  background: rgba(10, 20, 25, 0.9) !important;
}

.why-options input::placeholder,
.why-options textarea::placeholder {
  color: var(--muted);
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
}

.why-actions {
  display: flex;
  gap: .8rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap
}

.why-next {
  padding: .85rem 2.2rem;
  background: linear-gradient(135deg, var(--a1), var(--a3));
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 0 24px rgba(123, 94, 248, .35);
  transition: opacity .2s, transform .2s
}

.why-next:hover {
  opacity: .85;
  transform: translateY(-1px)
}

.why-skip {
  font-size: .8rem;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  transition: color .2s;
  text-decoration: underline;
  text-underline-offset: 3px
}

.why-skip:hover {
  color: var(--text)
}

/* SYNTHESIS & APPLICANT FLOW */
.why-synthesis {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 720px;
  padding: 2rem;
  position: relative;
  z-index: 5;
  animation: stepIn .5s cubic-bezier(.4, 0, .2, 1)
}

.why-synthesis.active {
  display: flex
}

.synthesis-card {
  width: 100%;
  background: rgba(123, 94, 248, .06);
  border: 1px solid rgba(123, 94, 248, .25);
  border-radius: 12px;
  padding: 2.5rem;
  margin: 2rem 0;
  text-align: left;
  position: relative;
  overflow: hidden
}

.synthesis-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--a1), var(--a2), var(--a3))
}

.synthesis-persona {
  font-family: 'Space Mono', monospace;
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--a2);
  margin-bottom: 1rem
}

.synthesis-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  white-space: pre-wrap
}

/* Profile Reveal Animation */
.line-reveal {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 1.2rem;
}

.line-reveal:last-child {
  margin-bottom: 0;
}

.line-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Banner Step */
.why-banner {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 600px;
  padding: 3rem;
  position: relative;
  z-index: 5;
  animation: stepIn .5s cubic-bezier(.4, 0, .2, 1);
  background: linear-gradient(135deg, rgba(123, 94, 248, .1), rgba(0, 229, 192, .05));
  border: 1px solid rgba(123, 94, 248, .3);
  border-radius: 16px;
  margin: auto;
}

.why-banner.active {
  display: flex;
}

.banner-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--a1), var(--a2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(123, 94, 248, 0.4);
}

.banner-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--a1), var(--a2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  line-height: 1.1;
}

/* Questions Step */
.question-container {
  display: none;
  width: 100%;
  max-height: 70vh;
  overflow-y: auto;
  max-width: 650px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 5;
  animation: stepIn 0.4s ease;
  padding: 1rem;
}

.question-container::-webkit-scrollbar {
  width: 4px;
}

.question-container::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.question-container.active {
  display: flex;
}

.q-text {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: var(--text);
}

.q-options {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
}

.q-btn {
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--muted);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}

.q-btn:hover {
  border-color: var(--a1);
  color: var(--text);
  background: rgba(123, 94, 248, 0.08);
  transform: translateY(-2px);
}

/* Accomplished Step */
.why-accomplished {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 5;
  animation: stepIn 0.5s ease;
}

.why-accomplished.active {
  display: flex;
}

.acc-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: var(--a2);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
    text-shadow: 0 0 20px rgba(123, 94, 248, 0.6);
  }

  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--a2);
  vertical-align: text-bottom;
  animation: blink .7s step-end infinite;
  margin-left: 1px
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

.loading-dots {
  display: inline-flex;
  gap: .3rem;
  padding: .5rem 0
}

.loading-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--a1);
  animation: dotpulse 1.2s ease-in-out infinite
}

.loading-dots span:nth-child(2) {
  animation-delay: .2s
}

.loading-dots span:nth-child(3) {
  animation-delay: .4s
}

@keyframes dotpulse {

  0%,
  80%,
  100% {
    opacity: .3;
    transform: scale(1)
  }

  40% {
    opacity: 1;
    transform: scale(1.3)
  }
}

.why-send {
  padding: .9rem 2.5rem;
  background: linear-gradient(135deg, var(--a1), var(--a2));
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(123, 94, 248, .4);
  transition: opacity .2s, transform .2s;
  margin-top: .5rem
}

.why-send:hover {
  opacity: .85;
  transform: translateY(-2px)
}

@media(max-width:900px) {
  nav {
    padding: 1.2rem 2rem;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 8, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 1.5rem;
  }

  .nav-btn {
    display: none;
  }

  .nav-links li:last-child {
    margin-top: 1rem;
  }

  .nav-links .nav-btn {
    display: inline-block;
    font-size: 1rem;
    padding: 1rem 2rem;
    margin-top: 1rem;
  }

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

  .exp-grid {
    grid-template-columns: 1fr 1fr
  }

  .team-grid {
    grid-template-columns: 1fr 1fr
  }

  footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    padding: 2rem
  }

  .wrap {
    padding: 5rem 2rem
  }
}

@media(max-width:600px) {

  .exp-grid,
  .team-grid {
    grid-template-columns: 1fr
  }

  .stats {
    grid-template-columns: 1fr 1fr
  }

  .mf,
  .cta {
    padding: 5rem 2rem
  }

  .why-truth {
    font-size: 1.6rem
  }

  .explore-controls {
    flex-direction: column !important;
    gap: 1.5rem !important;
    align-items: center;
  }

  .custom-slider::-webkit-slider-thumb {
    width: 20px;
    height: 20px;
  }

  .custom-slider {
    height: 8px;
  }
}
/* Stars Only Mode */
body.stars-only-mode nav,
body.stars-only-mode .hero,
body.stars-only-mode .ticker-wrap,
body.stars-only-mode .wrap,
body.stars-only-mode .exp-bg,
body.stars-only-mode .mf,
body.stars-only-mode footer {
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.5s ease;
}

body.stars-only-mode .cta-in .lbl,
body.stars-only-mode .cta-in h2,
body.stars-only-mode .cta-in p,
body.stars-only-mode .cta-in > div:not(.explore-panel-wrapper) {
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.5s ease;
}

body.stars-only-mode .cta {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.stars-only-mode .explore-panel-wrapper {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
