/* Header (navbar) with black-blue gradient and solid outline */
.navbar {
  background: rgba(20, 30, 60, 0.45);
  border-bottom: 1px solid #23304a;
  box-shadow: 0 2px 12px 0 rgba(20, 30, 60, 0.08);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  backdrop-filter: blur(16px) saturate(1.2);
}

.nav-link-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(77, 208, 255, 0.18);
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(77, 208, 255, 0.06)
  );
  box-shadow:
    0 10px 22px rgba(3, 8, 18, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  color: #bfe8ff;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.nav-link-chip:hover {
  background: rgba(77, 208, 255, 0.12);
  border-color: rgba(77, 208, 255, 0.34);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow:
    0 14px 28px rgba(5, 12, 24, 0.24),
    0 0 0 1px rgba(77, 208, 255, 0.05);
}

.nav-actions .btn {
  border-radius: 999px;
  padding-inline: 0.95rem;
  box-shadow: 0 12px 24px rgba(10, 20, 36, 0.2);
}

@media (max-width: 767.98px) {
  .navbar {
    gap: 0.85rem;
  }

  .nav-actions {
    width: 100%;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
}

footer {
  background: rgba(20, 30, 60, 0.38);
  border-top: 1px solid #23304a;
  box-shadow: 0 -2px 12px 0 rgba(20, 30, 60, 0.08);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  backdrop-filter: blur(14px) saturate(1.1);
}

/* Animated background faces */
.bg-face-anim {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  filter: blur(1px) brightness(1.15) saturate(1.2) drop-shadow(0 2px 12px #0008);
  opacity: 0;
  animation: face-fadein-move var(--anim-dur, 4s) cubic-bezier(0.4, 0.2, 0.6, 1)
    forwards;
  transition: opacity 1.2s;
}
.bg-face-anim.fade-out {
  opacity: 0 !important;
}
@keyframes face-fadein-move {
  0% {
    opacity: 0;
    transform: scale(0.7) translateY(20px) rotate(-8deg);
  }
  10% {
    opacity: 0.7;
    transform: scale(1.05) translateY(-8px) rotate(4deg);
  }
  80% {
    opacity: 0.7;
    transform: scale(1.05) translateY(-8px) rotate(4deg);
  }
  100% {
    opacity: 0;
    transform: scale(0.8) translateY(30px) rotate(0deg);
  }
}
/* Center the early access list */
.early-list-center {
  text-align: center;
  margin-left: 0;
  padding-left: 0;
  display: inline-block;
}
.early-list-center li {
  text-align: left;
}
/* Make hero muted text much darker for visibility */
.hero-muted-override {
  color: #b8d0f6 !important;
  text-shadow: 0 2px 6px rgba(6, 10, 19, 0.18);
}
/* Reaction emoji cards */
.reaction-card {
  display: inline-block;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(6, 10, 19, 0.1);
  padding: 0.18em 0.5em;
  margin: 0 0.12em;
  font-size: 1.1em;
  vertical-align: middle;
  color: #e8e9f0;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition:
    box-shadow 0.2s,
    background 0.2s;
}
.reaction-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background: #e9ecef;
  cursor: pointer;
}
body {
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(84, 255, 196, 0.12),
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 0%,
      rgba(83, 198, 255, 0.12),
      transparent 40%
    ),
    #060a13;
  color: #e8e9f0;
}

/* LOGO */
.logo {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #1a2a44;
  background: #10131a;
}

/* DEMO BOX */
.demo-box {
  max-width: 400px;
  background: rgba(20, 20, 30, 0.6);
  border-radius: 16px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* CHARACTER */
.character-img {
  width: 160px;
}

/* MESSAGE */
#message-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
  border-radius: 10px;
  font-size: 14px;
}

/* CARDS */
.custom-card {
  background: rgba(20, 20, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

/* EARLY */
.early-box {
  max-width: 500px;
  background: rgba(20, 20, 30, 0.6);
  border-radius: 16px;
}
/* INTERACTIVE CHARACTER CARDS */
.character-card {
  cursor: pointer;
  transition: all 0.25s ease;
}

/* HOVER */
.character-card:hover {
  transform: translateY(-6px);
  border: 1px solid rgba(77, 208, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* ACTIVE (SELECTED) */
.active-card {
  border: 1px solid #4dd0ff !important;
  box-shadow: 0 0 25px rgba(77, 208, 255, 0.35);
  transform: translateY(-4px);
}

/* BETTER TEXT VISIBILITY (you had faded text issue) */
.custom-card h5 {
  color: #ffffff;
}

.custom-card p {
  color: #9a9bb0;
}

/* FOCUS SHIELD FEATURE */
.features-heading {
  max-width: 720px;
  margin-bottom: 1.75rem;
}

.features-heading h2 {
  color: #ffffff;
  font-weight: 700;
  line-height: 1.12;
}

.feature-panel {
  max-width: 1080px;
  padding: 2rem 2rem 1.6rem;
  background: linear-gradient(
    145deg,
    rgba(20, 30, 60, 0.72),
    rgba(11, 17, 32, 0.84)
  );
  border: 1px solid rgba(77, 208, 255, 0.14);
  border-radius: 24px;
  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.feature-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(77, 208, 255, 0.28);
  border-radius: 999px;
  background: rgba(77, 208, 255, 0.08);
  color: #86e4ff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-panel h3 {
  color: #ffffff;
  font-weight: 700;
  line-height: 1.15;
}

.how-panel,
.faq-panel,
.why-panel {
  max-width: 1080px;
}

.how-heading,
.faq-heading,
.why-heading {
  max-width: 700px;
  margin-bottom: 1.5rem;
}

.how-card,
.faq-item,
.why-card {
  height: 100%;
  padding: 1.25rem 1.3rem;
  background: linear-gradient(
    145deg,
    rgba(20, 30, 60, 0.66),
    rgba(11, 17, 32, 0.8)
  );
  border: 1px solid rgba(77, 208, 255, 0.12);
  border-radius: 20px;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.why-card {
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #4dd0ff, rgba(77, 208, 255, 0.08));
  opacity: 0.85;
}

.how-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: 0.35rem 0.75rem;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(77, 208, 255, 0.22);
  border-radius: 999px;
  background: rgba(77, 208, 255, 0.08);
  color: #86e4ff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.how-card h3,
.faq-item h3,
.why-card h3 {
  margin-bottom: 0.6rem;
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.25;
}

.how-card p,
.faq-item p,
.why-card p {
  color: #b8d0f6;
  line-height: 1.65;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.shield-carousel {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.shield-carousel-viewport {
  overflow: hidden;
  border-radius: 24px;
}

.shield-track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}

.shield-card {
  flex: 0 0 100%;
  min-height: 0;
  padding: 1.05rem 1.15rem 1rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(77, 208, 255, 0.06)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  box-shadow:
    0 18px 36px rgba(4, 8, 18, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  opacity: 0.72;
  transform: scale(0.98);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    opacity 0.25s ease;
}

.shield-card.is-active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(77, 208, 255, 0.34);
  box-shadow:
    0 22px 42px rgba(6, 12, 24, 0.3),
    0 0 0 1px rgba(77, 208, 255, 0.08);
}

.shield-card h5 {
  margin-bottom: 0.45rem;
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 700;
}

.shield-card p {
  color: #b8d0f6;
  font-size: 0.98rem;
  line-height: 1.55;
}

.shield-carousel-controls {
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(77, 208, 255, 0.14);
  border-radius: 999px;
  background: rgba(9, 14, 28, 0.72);
  box-shadow:
    0 14px 30px rgba(3, 8, 18, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.shield-nav-btn {
  -webkit-appearance: none;
  appearance: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(77, 208, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: #e8f7ff;
  font-size: 1.2rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.shield-nav-btn:hover {
  transform: translateY(-2px);
  background: rgba(77, 208, 255, 0.12);
  border-color: rgba(77, 208, 255, 0.38);
}

.shield-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.shield-dot {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(184, 208, 246, 0.35);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.shield-dot.is-active {
  background: #4dd0ff;
  transform: scale(1.15);
  box-shadow: 0 0 14px rgba(77, 208, 255, 0.45);
}

@media (max-width: 767.98px) {
  .features-heading {
    margin-bottom: 1.25rem;
  }

  .feature-panel {
    padding: 1.35rem 1.1rem 1.15rem;
    border-radius: 20px;
  }

  .nav-link-chip {
    padding: 0.42rem 0.75rem;
    font-size: 0.82rem;
  }

  .shield-card {
    padding: 1rem;
  }

  .shield-carousel-controls {
    width: 100%;
    gap: 0.75rem;
  }

  .shield-nav-btn {
    width: 42px;
    height: 42px;
  }
}

.floating-socials {
  position: fixed;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);

  display: flex;
  flex-direction: column;
  gap: 14px;

  z-index: 100;
}

/* Icon style */
.floating-socials a {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);

  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

/* Icon image */
.floating-socials img {
  width: 18px;
  height: 18px;
  filter: invert(1) opacity(0.8);
}

/* Hover effect */
.floating-socials a:hover {
  transform: translateX(6px) scale(1.1);
  background: rgba(94, 234, 212, 0.15);
}

.floating-socials a:hover img {
  filter: invert(1) brightness(1.2);
}
/* Floating container */
.floating-socials {
  position: fixed;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 100;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

/* Base button */
.floating-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  position: relative;
  transition: all 0.3s ease;
}

/* Icons */
.floating-socials img {
  width: 18px;
  height: 18px;
  filter: invert(1) opacity(0.85);
}

/* Hover animation */
.floating-socials a:hover {
  transform: translateX(6px) scale(1.1);
  background: rgba(94, 234, 212, 0.15);
}

/* Tooltip */
.floating-socials a::after {
  content: attr(data-label);
  position: absolute;
  left: 50px;
  white-space: nowrap;
  background: #1a1d27;
  color: white;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 6px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.25s ease;
}

.floating-socials a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* WhatsApp highlight */
.floating-socials .whatsapp {
  background: rgba(37, 211, 102, 0.15);
}

/* Pulse animation */
.floating-socials .whatsapp::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* Unified Waitlist Styles */
.waitlist-box {
  max-width: 400px;
  margin: 20px auto;
  padding: 10px;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.waitlist-input {
  width: 100% !important;
  padding: 14px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(77, 208, 255, 0.25) !important;
  background: rgba(20, 30, 60, 0.6) !important;
  color: #ffffff !important;
  outline: none !important;
  transition: all 0.25s ease !important;
  box-sizing: border-box !important;
}

.waitlist-input:focus {
  border-color: #4dd0ff !important;
  box-shadow: 0 0 12px rgba(77, 208, 255, 0.4) !important;
  background: rgba(20, 30, 60, 0.8) !important;
}

.waitlist-btn {
  width: 100% !important;
  background: #0dcaf0 !important;
  color: #060a13 !important;
  border: none !important;
  padding: 14px !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  margin-bottom: 5px !important;
  transition:
    transform 0.2s,
    background 0.2s !important;
}

.waitlist-btn:hover {
  transform: scale(1.02) !important;
  background: #0bb5d8 !important;
}

.waitlist-note {
  font-size: 13px;
  color: #9a9bb0;
}
.locked-card {
  opacity: 0.7;
  filter: grayscale(0.4);
  transition: 0.3s;
}

.locked-card:hover {
  opacity: 1;
  transform: translateY(-4px);
}

.waitlist-input,
.waitlist-btn {
  width: 100%;
  display: block;
}
.waitlist-note {
  margin-top: 12px;
  color: #9aa3b2;
  font-size: 13px;
  margin-bottom: 10px;
}
.waitlist-success {
  margin-top: 16px;
  padding: 14px;
  border-radius: 10px;

  background: rgba(77, 208, 255, 0.1);
  border: 1px solid rgba(77, 208, 255, 0.4);

  color: #4dd0ff;
  font-weight: 500;

  animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
