:root {
  --panel-scroll-height: 82vh;
  --site-base-font-size: 90%;
}

html {
  font-size: var(--site-base-font-size);
}

html,
body {
  cursor: none;
  background-color: #030305;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

a,
button,
.interactive-card,
.hover-target-card,
.magnetic-wrap {
  cursor: none;
}

.cursor-dot {
  width: 5px;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 14px rgba(0, 240, 255, 0.9);
}

.cursor-ring {
  width: 260px;
  height: 260px;
  border: 0;
  background:
    radial-gradient(circle at 45% 45%, rgba(255, 255, 255, 0.18), transparent 8%),
    radial-gradient(circle, rgba(0, 240, 255, 0.24), rgba(99, 102, 241, 0.12) 38%, rgba(139, 92, 246, 0.05) 58%, transparent 72%);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 3;
  transform: translate(-50%, -50%);
  filter: blur(24px) saturate(1.3);
  mix-blend-mode: screen;
  opacity: 0.58;
  transition: width 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    height 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: width, height, transform, opacity, filter;
}

.cursor-hover .cursor-ring {
  width: 420px;
  height: 420px;
  opacity: 0.78;
  filter: blur(30px) saturate(1.65);
}

.promise-icon {
  display: inline-flex;
  min-width: 72px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 240, 255, 0.42);
  border-radius: 999px;
  color: #67e8f9;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.14), rgba(139, 92, 246, 0.08));
  box-shadow: 0 0 28px rgba(0, 240, 255, 0.08);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.reveal-wrapper {
  overflow: hidden;
  display: inline-block;
}

.reveal-item {
  transform: translateY(100%);
  animation: revealUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes revealUp {
  to {
    transform: translateY(0);
  }
}

.animate-reveal-btn {
  opacity: 0;
  transform: translateY(30px);
  animation: elegantReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.8s;
}

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

.scroll-container {
  width: 100%;
}

.panel {
  position: sticky;
  top: 0;
  min-height: var(--panel-scroll-height);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  will-change: transform, opacity, filter;
  transform-origin: center center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.panel.full-panel {
  min-height: 100vh;
}

.progress-indicator {
  position: fixed;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.progress-dot {
  width: 6px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.progress-dot.active {
  background-color: #00f0ff;
  transform: scale(2);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.8);
}

.tilt-container {
  perspective: 1000px;
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
  will-change: transform;
}

.radar-scan {
  position: relative;
}

.radar-scan::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(0, 240, 255, 0.4);
  animation: radar 3s linear infinite;
}

@keyframes radar {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

@keyframes float-gentle {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

.float-item-1 {
  animation: float-gentle 6s ease-in-out infinite;
}

.float-item-2 {
  animation: float-gentle 8s ease-in-out infinite 1s;
}

.float-item-3 {
  animation: float-gentle 7s ease-in-out infinite 2s;
}

.bg-photo {
  background-size: cover;
  background-position: center;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 820px;
  margin: 34px auto 0;
}

.trust-item {
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 16px;
  background: rgba(12, 12, 16, 0.58);
  padding: 16px 14px;
  backdrop-filter: blur(10px);
}

.trust-item span {
  display: block;
  color: #67e8f9;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.trust-item p {
  color: rgba(226, 232, 240, 0.6);
  font-size: 0.76rem;
  margin-top: 4px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.comparison-card {
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 24px;
  background: rgba(12, 12, 16, 0.72);
  padding: 30px;
}

.comparison-card.is-cyberhub {
  border-color: rgba(0, 240, 255, 0.36);
  background:
    radial-gradient(circle at 80% 10%, rgba(0, 240, 255, 0.14), transparent 36%),
    rgba(12, 12, 16, 0.78);
  box-shadow: 0 0 50px rgba(0, 240, 255, 0.08);
}

.comparison-card h4 {
  color: white;
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.comparison-card ul {
  display: grid;
  gap: 14px;
}

.comparison-card li {
  position: relative;
  color: rgba(226, 232, 240, 0.72);
  font-size: 0.96rem;
  line-height: 1.55;
  padding-left: 24px;
}

.comparison-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.5);
}

.comparison-card.is-cyberhub li::before {
  background: #22d3ee;
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.55);
}

.creator-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.creator-proof-card {
  min-height: 280px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(0, 240, 255, 0.08), transparent 38%),
    rgba(12, 12, 16, 0.74);
  padding: 24px;
}

.creator-proof-card__top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.creator-proof-card h4 {
  color: white;
  font-size: 1.15rem;
  font-weight: 800;
}

.creator-proof-card__top span {
  border: 1px solid rgba(0, 240, 255, 0.32);
  border-radius: 999px;
  color: #67e8f9;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 6px 10px;
  text-transform: uppercase;
  white-space: nowrap;
}

.creator-proof-card p {
  color: rgba(226, 232, 240, 0.66);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-top: 12px;
}

.creator-proof-card strong {
  color: rgba(255, 255, 255, 0.9);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 18px;
  background: rgba(12, 12, 16, 0.68);
  padding: 0 22px;
}

.faq-item summary {
  color: white;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  padding: 20px 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  color: rgba(226, 232, 240, 0.66);
  font-size: 0.94rem;
  line-height: 1.65;
  padding: 16px 0 20px;
}

.join-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.join-modal.is-open {
  pointer-events: auto;
  opacity: 1;
}

.join-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 5, 0.76);
  backdrop-filter: blur(18px);
}

.join-modal__dialog {
  position: relative;
  width: min(980px, 100%);
  max-height: min(860px, 92vh);
  overflow: auto;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 24px;
  background:
    radial-gradient(circle at 82% 12%, rgba(0, 240, 255, 0.2), transparent 30%),
    radial-gradient(circle at 8% 18%, rgba(139, 92, 246, 0.18), transparent 26%),
    rgba(8, 8, 13, 0.96);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.58);
  padding: 34px;
  transform: translateY(18px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.join-modal.is-open .join-modal__dialog {
  transform: translateY(0) scale(1);
}

.join-modal__close {
  position: absolute;
  right: 18px;
  top: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: white;
  background: rgba(255, 255, 255, 0.06);
  font-size: 26px;
  line-height: 1;
}

.join-modal__grid {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 360px);
  gap: 30px;
  align-items: center;
}

.join-modal__eyebrow {
  color: #22d3ee;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.join-modal__title {
  max-width: 520px;
  color: white;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
  margin-bottom: 18px;
}

.join-modal__subtitle {
  max-width: 520px;
  color: rgba(226, 232, 240, 0.68);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.join-modal__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background: #67e8f9;
  color: #020617;
  font-size: 0.88rem;
  font-weight: 700;
}

.join-modal__notice {
  margin-top: 22px;
  color: white;
  font-size: 1.12rem;
  font-weight: 700;
}

.join-modal__card {
  border-radius: 22px;
  padding: 14px;
  background: white;
}

.join-modal__qr {
  display: block;
  width: 100%;
  border-radius: 14px;
}

.join-form {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.join-form label {
  display: block;
  color: rgba(226, 232, 240, 0.8);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.join-form__message-label {
  margin-top: 18px;
}

.join-form__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.join-form input,
.join-form textarea {
  min-height: 52px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: white;
  outline: none;
}

.join-form input {
  border-radius: 999px;
  padding: 0 18px;
}

.join-form textarea {
  display: block;
  width: 100%;
  resize: vertical;
  border-radius: 20px;
  padding: 15px 18px;
  line-height: 1.55;
}

.join-form input:focus,
.join-form textarea:focus {
  border-color: rgba(103, 232, 249, 0.82);
  box-shadow: 0 0 0 4px rgba(0, 240, 255, 0.12);
}

.join-form button {
  min-height: 52px;
  border-radius: 999px;
  background: white;
  color: #020617;
  padding: 0 22px;
  font-weight: 800;
}

.join-form button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.join-form__status {
  min-height: 22px;
  margin-top: 12px;
  color: #67e8f9;
  font-size: 0.9rem;
}

@media (max-width: 767px) {
  html,
  body {
    cursor: auto;
  }

  a,
  button {
    cursor: pointer;
  }

  .cursor-dot,
  .cursor-ring,
  .progress-indicator {
    display: none;
  }

  .panel {
    position: relative;
    min-height: auto;
    padding: 96px 0;
  }

  .trust-bar,
  .comparison-grid,
  .creator-proof-grid {
    grid-template-columns: 1fr;
  }

  .join-modal {
    padding: 12px;
  }

  .join-modal__dialog {
    padding: 24px;
    border-radius: 18px;
  }

  .join-modal__grid,
  .join-form__row {
    grid-template-columns: 1fr;
  }

  .join-modal__card {
    max-width: 320px;
    margin: 0 auto;
  }
}
