/* [project]/src/styles/notification.css [app-client] (css) */
.notif-container {
  z-index: 9999;
  pointer-events: none;
  flex-direction: column;
  gap: 12px;
  max-width: 380px;
  display: flex;
  position: fixed;
  top: 24px;
  right: 24px;
}

.notif-item {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  pointer-events: auto;
  transform-origin: 100% 0;
  background: #141419f2;
  border: 1px solid #ffffff1a;
  border-radius: 16px;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 40px 16px 16px;
  animation: .4s cubic-bezier(.16, 1, .3, 1) forwards notif-slide-in;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px #0006, inset 0 0 0 1px #ffffff0d;
}

.notif-item.notif-exit {
  animation: .3s cubic-bezier(.4, 0, 1, 1) forwards notif-slide-out;
}

@keyframes notif-slide-in {
  from {
    opacity: 0;
    transform: translateX(100%)scale(.9);
  }

  to {
    opacity: 1;
    transform: translateX(0)scale(1);
  }
}

@keyframes notif-slide-out {
  from {
    opacity: 1;
    transform: translateX(0)scale(1);
  }

  to {
    opacity: 0;
    transform: translateX(100%)scale(.9);
  }
}

.notif-icon-wrap {
  border-radius: 10px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  display: flex;
}

.notif-icon {
  width: 22px;
  height: 22px;
}

.notif-success .notif-icon-wrap {
  background: linear-gradient(135deg, #10b98133, #10b9811a);
  border: 1px solid #10b9814d;
}

.notif-success .notif-icon {
  color: #10b981;
  filter: drop-shadow(0 0 8px #10b98180);
}

.notif-success {
  border-left: 3px solid #10b981;
}

.notif-error .notif-icon-wrap {
  background: linear-gradient(135deg, #ef444433, #ef44441a);
  border: 1px solid #ef44444d;
}

.notif-error .notif-icon {
  color: #ef4444;
  filter: drop-shadow(0 0 8px #ef444480);
}

.notif-error {
  border-left: 3px solid #ef4444;
}

.notif-warning .notif-icon-wrap {
  background: linear-gradient(135deg, #f59e0b33, #f59e0b1a);
  border: 1px solid #f59e0b4d;
}

.notif-warning .notif-icon {
  color: #f59e0b;
  filter: drop-shadow(0 0 8px #f59e0b80);
}

.notif-warning {
  border-left: 3px solid #f59e0b;
}

.notif-info .notif-icon-wrap {
  background: linear-gradient(135deg, #3b82f633, #3b82f61a);
  border: 1px solid #3b82f64d;
}

.notif-info .notif-icon {
  color: #3b82f6;
  filter: drop-shadow(0 0 8px #3b82f680);
}

.notif-info {
  border-left: 3px solid #3b82f6;
}

.notif-content {
  flex: 1;
  min-width: 0;
}

.notif-title {
  color: #fff;
  margin-bottom: 4px;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.3;
}

.notif-message {
  color: #ffffffb3;
  font-size: .8rem;
  line-height: 1.4;
}

.notif-close {
  color: #ffffff80;
  cursor: pointer;
  background: #ffffff1a;
  border: none;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  transition: all .2s;
  display: flex;
  position: absolute;
  top: 12px;
  right: 12px;
}

.notif-close:hover {
  color: #fff;
  background: #fff3;
}

.notif-close svg {
  width: 14px;
  height: 14px;
}

.notif-progress {
  background: #ffffff1a;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

.notif-progress-bar {
  transform-origin: 0;
  width: 100%;
  height: 100%;
  animation: linear forwards notif-progress-shrink;
}

.notif-success .notif-progress-bar {
  background: linear-gradient(90deg, #10b981, #34d399);
}

.notif-error .notif-progress-bar {
  background: linear-gradient(90deg, #ef4444, #f87171);
}

.notif-warning .notif-progress-bar {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.notif-info .notif-progress-bar {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

@keyframes notif-progress-shrink {
  from {
    transform: scaleX(1);
  }

  to {
    transform: scaleX(0);
  }
}

.notif-item:hover .notif-progress-bar {
  animation-play-state: paused;
}

@media (max-width: 480px) {
  .notif-container {
    max-width: none;
    top: 12px;
    left: 12px;
    right: 12px;
  }

  .notif-item {
    padding: 12px 36px 12px 12px;
  }

  .notif-icon-wrap {
    width: 32px;
    height: 32px;
  }

  .notif-icon {
    width: 18px;
    height: 18px;
  }

  .notif-title {
    font-size: .85rem;
  }

  .notif-message {
    font-size: .75rem;
  }
}

/* [project]/src/styles/auth-modal.css [app-client] (css) */
.auth-input {
  width: 100%;
  color: var(--text, #e8e8e8);
  background: var(--bg, #0a0a0a);
  border: 1px solid var(--border, #2a2a2a);
  font-size: 13px;
  font-family: var(--font-mono, "SF Mono", "Monaco", "Cascadia Code", monospace);
  border-radius: 2px;
  outline: none;
  padding: 10px 12px;
  transition: border-color .2s;
}

.auth-input:focus {
  border-color: var(--green, #4f8);
}

.auth-input::placeholder {
  color: var(--text-ghost, #555);
}

.auth-button {
  letter-spacing: 1px;
  font-size: 12px;
  font-family: var(--font-mono, monospace);
  border: 1px solid var(--green, #4f8);
  color: var(--green, #4f8);
  cursor: pointer;
  text-transform: uppercase;
  background: #44ff8814;
  border-radius: 2px;
  padding: 10px 20px;
  font-weight: 600;
  transition: all .2s;
  position: relative;
  overflow: hidden;
}

.auth-button:hover:not(:disabled) {
  background: #44ff8826;
}

.auth-button:before {
  display: none;
}

.auth-button:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.auth-modal-card {
  background: var(--surface, #141414);
  border: 1px solid var(--border, #2a2a2a);
  font-family: var(--font-mono, monospace);
  border-radius: 4px;
  box-shadow: 0 8px 32px #0009;
}

.auth-tab {
  color: var(--text-ghost, #555);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-mono, monospace);
  background: none;
  border: none;
  border-bottom: 2px solid #0000;
  flex: 1;
  padding: 12px 16px;
  transition: all .2s;
}

.auth-tab:hover {
  color: var(--text-dim, #888);
}

.auth-tab.active {
  background: var(--overlay-subtle, #ffffff05);
  border-bottom-color: var(--green, #4f8);
  color: var(--green, #4f8);
}

.auth-close-btn {
  color: var(--text-ghost, #555);
  cursor: pointer;
  z-index: 10;
  background: none;
  border: none;
  padding: 4px;
  transition: color .2s;
  position: absolute;
  top: 12px;
  right: 12px;
}

.auth-close-btn:hover {
  color: var(--text, #e8e8e8);
}

.auth-link {
  color: var(--green, #4f8);
  cursor: pointer;
  font-size: 11px;
  font-family: var(--font-mono, monospace);
  background: none;
  border: none;
  text-decoration: underline;
  transition: opacity .2s;
}

.auth-link:hover {
  opacity: .7;
}

.auth-label {
  color: var(--text-dim, #888);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 10px;
  font-family: var(--font-mono, monospace);
  margin-bottom: 6px;
  display: block;
}

.auth-label-hint {
  color: var(--text-ghost, #555);
  text-transform: none;
  letter-spacing: 0;
  font-size: 10px;
}

/* [project]/src/styles/wallet-balance-card.css [app-client] (css) */
.wallet-balance-card {
  background: none;
  border: 1px solid #ffffff1a;
  border-radius: 16px;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  transition: box-shadow .2s ease-in-out;
  display: flex;
  position: relative;
}

.wallet-balance-card:hover {
  box-shadow: 0 1.5px #ffffff2b, inset 0 0 2px #00000014, inset 0 0 4px 3px #10b98126, 0 0 16px 4px #10b98114;
}

.wallet-svg-wrapper {
  background: #10b9811a;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  padding: 6px;
  display: flex;
}

.wallet-svg-wrapper svg {
  width: 100%;
  height: 100%;
}

.wallet-balance-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2px;
  min-width: 80px;
  display: flex;
}

.wallet-balance-heading {
  color: #888;
  letter-spacing: .5px;
  font-size: 10px;
  font-weight: 400;
}

.wallet-balance-amount {
  color: #fff;
  letter-spacing: .3px;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.wallet-deposit-btn {
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  background-color: #10b981;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  transition: all .3s;
  display: flex;
}

.wallet-deposit-btn:hover {
  background-color: #34d399;
  box-shadow: 0 0 15px -3px #10b98166;
}

.wallet-plus-sign {
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  display: flex;
}

/* [project]/src/components/landing/CommunitySection.css [app-client] (css) */
.community-section {
  background-color: #0a0a0a;
  background-image: linear-gradient(330deg, #000 29%, #0000 71%, #1f302fd9);
  min-height: 120vh;
  position: relative;
  overflow: hidden;
}

.ibc-adv-wrapper {
  flex-flow: row;
  width: 100vw;
  height: 120vh;
  display: flex;
  position: sticky;
  top: 0;
}

.advantage-border-r {
  z-index: 10;
  pointer-events: none;
  background-image: linear-gradient(138deg, #182c2b, #0000 40%);
  border-top: 1px solid #1f302f;
  border-bottom: 1px solid #1f302f;
  border-left: 1px solid #1f302f;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  width: 90vw;
  min-width: 90vw;
  height: 120vh;
  position: absolute;
  right: 0;
}

.advantage-border-l {
  z-index: 55;
  pointer-events: none;
  border-bottom: 1px solid #1f302f;
  border-right: 1px solid #1f302f;
  border-bottom-right-radius: 20px;
  width: 50vw;
  min-height: 54vh;
  position: absolute;
  left: 0;
}

.advantage-container {
  z-index: 11;
  mix-blend-mode: normal;
  flex-flow: column;
  width: 50vw;
  min-width: 50vw;
  max-width: 50vw;
  height: 39%;
  padding-top: 10vh;
  padding-left: 15vw;
  display: flex;
  position: relative;
}

.advantage-content-wrapper {
  margin-bottom: 4rem;
}

.advantage-eyebrow {
  color: #10b981;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-size: .75rem;
  font-weight: 500;
}

.advantage-heading h2 {
  color: #fff;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
}

.advantage-description {
  position: absolute;
  top: 58vh;
  left: 15vw;
}

.advantage-description p {
  color: #fff9;
  max-width: 450px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
}

.keyviz-wrapper {
  filter: contrast(113%);
  mix-blend-mode: normal;
  justify-content: flex-end;
  align-self: flex-end;
  align-items: center;
  width: 50vw;
  min-width: 50vw;
  max-width: 50vw;
  height: 110vh;
  min-height: 30vh;
  display: flex;
  position: relative;
}

.overlay-base {
  z-index: 40;
  pointer-events: none;
  background: linear-gradient(to top, #0a0a0a 0% 30%, #0000 100%);
  height: 30%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.keyviz-ibc {
  object-fit: scale-down;
  will-change: transform;
  width: auto;
  max-width: 50svw;
  transform-style: preserve-3d;
  transition: transform .1s ease-out;
  position: absolute;
}

@media (max-width: 968px) {
  .ibc-adv-wrapper {
    flex-flow: column;
  }

  .advantage-border-r, .advantage-border-l {
    display: none;
  }

  .advantage-container {
    text-align: center;
    align-self: center;
    width: 100vw;
    min-width: auto;
    max-width: none;
    height: auto;
    padding-top: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .advantage-description p {
    margin: 0 auto;
  }

  .keyviz-wrapper {
    justify-content: center;
    align-self: center;
    align-items: flex-end;
    width: 100vw;
    min-width: auto;
    max-width: none;
    height: auto;
    min-height: 60vh;
  }

  .keyviz-ibc {
    max-width: 100%;
  }
}

/* [project]/src/components/landing/FeatureSlider.css [app-client] (css) */
.feature-slider-section {
  justify-content: center;
  align-items: flex-start;
  width: 100vw;
  min-width: 100vw;
  padding: 6rem 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.verticals-inner {
  z-index: 10;
  background-color: #0000;
  border: 1px solid #1f302f;
  border-radius: 20px;
  width: 79vw;
  max-width: 79vw;
  min-height: 650px;
  padding: 2rem;
  position: relative;
}

.feature-slider {
  z-index: 1;
  gap: 1rem;
  width: 100%;
  height: 550px;
  display: flex;
  position: relative;
}

.feature-card {
  cursor: pointer;
  background-color: #0a0a0a;
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: contain;
  border: 1px solid #1f302f;
  border-radius: 20px;
  transition: all .5s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card:not(.active) {
  flex: 0 0 160px;
}

.feature-card.active {
  flex: 1;
}

.card-collapsed {
  background: linear-gradient(#0000 60%, #1f302f 100%);
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 1rem;
  display: flex;
}

.vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: .3em;
  color: #fff6;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 600;
  transition: color .3s;
  transform: rotate(180deg);
}

.feature-card:hover .vertical-text {
  color: #10b981;
}

.card-content {
  text-align: left;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 2rem;
  display: flex;
}

.card-icon {
  flex-shrink: 0;
  width: 3em;
  height: 3em;
}

.card-icon svg {
  color: #10b981;
  width: 100%;
  height: 100%;
}

.card-text {
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
  padding-bottom: 1rem;
  display: flex;
}

.card-title {
  color: #fff;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.card-description {
  color: #fff9;
  max-width: 400px;
  font-size: .9rem;
  line-height: 1.7;
}

.card-cta {
  color: #fff;
  letter-spacing: .1em;
  cursor: pointer;
  background: none;
  border: 1px solid #fff3;
  border-radius: 8px;
  align-items: center;
  gap: .5rem;
  width: fit-content;
  padding: .75rem 1.5rem;
  font-size: .75rem;
  font-weight: 600;
  transition: all .3s;
  display: inline-flex;
}

.card-cta:hover {
  color: #10b981;
  background: #10b9811a;
  border-color: #10b981;
}

@media (max-width: 768px) {
  .verticals-inner {
    width: 94vw;
    max-width: 94vw;
    min-height: auto;
    padding: 1rem;
  }

  .feature-slider {
    flex-direction: column;
    height: auto;
  }

  .feature-card:not(.active) {
    flex: 0 0 60px;
  }

  .feature-card.active {
    flex: 0 0 450px;
  }

  .feature-card {
    background-position: 100% 0;
    background-size: contain;
  }

  .card-collapsed {
    flex-direction: row;
  }

  .vertical-text {
    writing-mode: horizontal-tb;
    transform: none;
  }
}

/* [project]/src/components/landing/StatsSection.css [app-client] (css) */
.stats-section {
  padding: 6rem 0;
  position: relative;
}

.stats-container {
  justify-content: center;
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
}

.stat-card {
  cursor: pointer;
  background-color: #0a0a0a;
  border: 1px solid #1f302f;
  border-radius: 20px;
  flex-direction: column;
  flex: 1;
  max-width: 320px;
  min-height: 280px;
  padding: 1.5rem;
  transition: all .3s;
  display: flex;
  position: relative;
}

.stat-card:hover {
  border-color: #10b981;
}

.stat-card.active {
  min-height: 320px;
}

.stat-header {
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  display: flex;
}

.stat-icon {
  color: #10b981;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
}

.stat-number {
  color: #fff6;
  background: #ffffff0d;
  border-radius: 50px;
  padding: .4rem .8rem;
  font-size: .75rem;
}

.stat-content {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  display: flex;
}

.stat-value {
  color: #10b981;
  letter-spacing: .02em;
  margin: 0 0 .5rem;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
}

.stat-label {
  color: #ffffffb3;
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}

.stat-description {
  color: #ffffff80;
  margin: 1.5rem 0 0;
  font-size: .85rem;
  line-height: 1.6;
  animation: .3s fadeIn;
}

.stat-indicator {
  background: #10b981;
  border-radius: 0 0 3px 3px;
  width: 40px;
  height: 3px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@media (max-width: 968px) {
  .stats-container {
    flex-wrap: wrap;
  }

  .stat-card {
    flex: 45%;
    min-width: 280px;
  }
}

@media (max-width: 640px) {
  .stats-container {
    flex-direction: column;
    align-items: center;
  }

  .stat-card {
    width: 100%;
    max-width: 400px;
  }
}

/* [project]/src/components/landing/Footer.css [app-client] (css) */
.footer {
  position: relative;
}

.footer-main {
  border-top: 1px solid #1f302f;
  padding: 4rem 2rem;
}

.footer-content {
  justify-content: space-between;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}

.footer-brand {
  max-width: 450px;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-description {
  color: #ffffff80;
  margin: 0;
  font-size: .85rem;
  line-height: 1.8;
}

.footer-nav-section {
  flex-direction: column;
  align-items: flex-end;
  gap: 2rem;
  display: flex;
}

.footer-social {
  gap: 1rem;
  display: flex;
}

.social-link {
  color: #fff9;
  border: 1px solid #1f302f;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: all .3s;
  display: flex;
}

.social-link:hover {
  color: #10b981;
  border-color: #10b981;
}

.footer-nav {
  gap: 2rem;
  display: flex;
}

.footer-nav a {
  color: #fff9;
  letter-spacing: .1em;
  font-size: .75rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .3s;
}

.footer-nav a:hover {
  color: #10b981;
}

.subscribe-button {
  color: #10b981;
  background: none;
  border: 1px solid #10b981;
  border-radius: 8px;
  padding: .75rem 2rem;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
}

.subscribe-button:hover {
  background: #10b9811a;
}

.footer-bottom {
  border-top: 1px solid #1f302f;
  padding: 1.5rem 2rem;
}

.footer-bottom-content {
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}

.footer-links {
  gap: 2rem;
  display: flex;
}

.footer-links a {
  color: #fff6;
  letter-spacing: .1em;
  font-size: .7rem;
  text-decoration: none;
  transition: color .3s;
}

.footer-links a:hover {
  color: #10b981;
}

.footer-copyright {
  color: #fff6;
  margin: 0;
  font-size: .7rem;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 3rem;
  }

  .footer-nav-section {
    align-items: flex-start;
  }

  .footer-bottom-content {
    text-align: center;
    flex-direction: column;
    gap: 1rem;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/*# sourceMappingURL=src_8ef55285._.css.map*/