html {
  scroll-behavior: smooth;
}

.ripple {
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}


* {
  scrollbar-width: thin;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lexend Deca", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "slnt" 0;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
button,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

:root {
  --primary: #ff0055;
  --primary-dark: #ff0055cc;
  --bg-dark: #0a0e27;
  --bg-darker: #050810;
  --bg-card: #1a1f3a;
  --text-light: #e0e0e0;
  --text-lighter: #a8a8a8;
  --accent: #7c3aed;
  --accent-light: #a855f7;
  --border: #2a2f4a;
}

.header {
  position: fixed;
  top: 10px;
  left: 16px;
  right: 16px;
  z-index: 999;
}

@media (min-width: 1024px) {
  .header {
    left: 0;
    right: 0;
    top: 10px;
  }
}

.header-card {
  position: relative;
  margin: 1rem auto;
  max-width: 1382px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: none !important;
  box-shadow: none !important;
}

.header-card.glass {
  border: none !important;
  box-shadow: none !important;
}

/*.header-card::before,
.header-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  pointer-events: none;
}

.header-card::before {
  z-index: -10;
  background: linear-gradient(to bottom, rgba(255,255,255,0.02), transparent);
  transition: opacity 0.3s;
}

.header-card::after {
  z-index: -1;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}*/

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  padding: 8px;
  gap: 16px;
}

.logo-link {
  display: flex;
  flex: 1;
  align-items: center;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}

.logo-img {
  width: 32px;
  height: 32px;
  margin-right: 6px;
  border-radius: 8px;
  object-fit: cover;
}

.logo-highlight {
  color: #ff0055;
}

.desktop-nav {
  display: none;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex: 1;
  }
}

.nav-list {
  list-style: none;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-link:hover {
  color: #ff0055;
}

.desktop-auth {
  display: none;
}

@media (min-width: 768px) {
  .desktop-auth {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: flex-end;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  height: 36px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.btn-login {
  border: 1px solid #404040;
  background: #ff0055;
  color: white;
  text-decoration: none;
}

.btn-login:hover {
  background: #ff0055be;
  border-color: #505050;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

.bar {
  width: 20px;
  height: 2px;
  background: white;
  transition: all 0.3s;
}

.hamburger.active .bar:first-child {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: scaleY(0.95);
  transition: all 0.2s ease-in-out;
}

.header.open .mobile-menu {
  max-height: 500px;
  opacity: 1;
  transform: scaleY(1);
}

.mobile-content {
  padding: 12px 12px;
  background: #1a1a1a;
  border-radius: 8px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.mobile-item-link {
  display: block;
  text-decoration: none;
}

.mobile-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(to bottom right, #1a1a1a, #131313);
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.3),
    inset 0 -1px 1px rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s;
}

.mobile-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.icon {
  width: 16px;
  height: 16px;
  color: #ff0055;
}

.divider {
  border: none;
  margin: 16px 0;
}

/*.mobile-auth {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}*/

.mobile-auth a,
.mobile-auth button,
.mobile-btn {
  width: 100%;
  height: 40px;
  font-size: 16px;
  text-decoration: none !important;
}

@media (max-width: 640px) {
  .header {
    top: 15px;
    left: 10px;
    right: 10px;
  }

  .header-card {
    border-radius: 14px;
  }
}

footer.footer {
  background: rgba(0, 0, 0, .5);
  border-top: none;
  padding: 2rem 1rem 1.5rem !important;
}

footer.footer .content {
  max-width: 1400px;
  margin: 0 auto;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

footer.footer .content .section h4 {
  color: var(--primary);
}

footer.footer .content .section p,
footer.footer .content .section ul a {
  color: var(--text-lighter);
  text-decoration: none;
  transition: color .3s ease;
  line-height: 1.8;
}

footer.footer .content .section ul {
  list-style: none;
}

footer.footer .content .section ul a:hover {
  color: var(--primary);
}

footer.footer .bottom {
  text-align: center;
  border-top: none;
  padding-top: 2rem;
  color: var(--text-lighter);
  font-size: .9rem;
}

/*.footer {
  position: relative;
  border-top: 1px solid #ffffff10;
}

.footer-container {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  filter: saturate(0.75);
  position: relative;
}

.footer-inner {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  font-size: 0.875rem;
  color: #d1d5db;
  text-align: center;
}

@media (min-width: 1024px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.copyright {
  color: #9ca3af;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.375rem;
}

@media (min-width: 1024px) {
  .footer-links {
    margin-right: 0;
  }
  .footer-links li {
    margin-bottom: 0;
  }
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ff0055;
}*/

.landing {
  font-family: "Lexend Deca", sans-serif;
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  color: var(--text-light);
  overflow-x: hidden;
  min-height: 100vh;
}

.landing section .btn {
  padding: 1.2rem 3rem;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease;
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
}

.landing section .btn.primary {
  background: #ff0055;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0);
}

.landing section .btn.primary:hover {
  transform: translateY(-2px);
}

.landing section .btn.secondary {
  background: rgba(0, 0, 0, 0);
  color: var(--text-light);
  border: 1px solid var(--border);
}

.landing section .btn.secondary:hover {
  border-color: #ff0055;
  color: #ff0055;
  transform: translateY(-2px);
}

.landing .hero {
  margin-top: 5rem;
  padding: 5rem 1rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .landing .hero {
    flex-direction: column;
  }
}

.landing .hero .content {
  flex: 1;
}

@media (max-width: 768px) {
  .landing .hero .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .landing .hero .content .title,
  .landing .hero .content .sub {
    text-align: center;
  }
}

.landing .hero .content .title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: #ff0055;
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  background-clip: text;
  font-weight: 700;
}

.landing .hero .content .sub {
  font-size: 1rem;
  color: var(--text-lighter);
  margin-bottom: 2rem;
  font-weight: 500;
}

.landing .hero .content .buttons {
  gap: 1rem;
}

.landing .hero .preview {
  flex: 1;
}

.landing .hero .preview .img {
  width: 100%;
  border-radius: 15px;
}

.landing .showcase,
.landing .pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  padding: 2rem 1rem;
}

.landing .showcase {
  background: transparent;
}

.landing .showcase .title,
.landing .pricing .title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
  background: #ff0055;
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  background-clip: text;
  font-weight: 700;
}

.landing .showcase .video {
  max-width: 900px;
  width: 100%;
  border-radius: 15px;
}

.landing .pricing .container {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .landing .pricing .container {
    flex-direction: column-reverse;
    display: flex;
  }
}

.landing .pricing .container .card {
  width: 100%;
  background: linear-gradient(135deg, var(--bg-card), rgba(124, 58, 237, 0.05));
  border: 2px solid var(--border);
  border-radius: 15px;
  padding: 2.5rem;
  position: relative;
  transition: all .3s ease;
}

.landing .pricing .container .card:hover {
  transform: translateY(-5px);
}

.landing .pricing .container .card.featured {
  border: 2px solid var(--primary);
}

.landing .pricing .container .card.featured:hover {
  transform: scale(1.01) translateY(-10px);
}

.landing .pricing .container .card .badge {
  position: absolute;
  top: -15px;
  right: 30px;
  background: var(--primary);
  color: var(--bg-dark);
  padding: .5rem 1rem;
  border-radius: 20px;
  font-size: .85rem;
  font-weight: 700;
}

.landing .pricing .container .card .name {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.landing .pricing .container .card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .5rem;
}

.landing .pricing .container .card .price .currency {
  font-size: 1.5rem;
}

.landing .pricing .container .card .price .price_period {
  font-size: .9rem;
  color: var(--text-lighter);
}

.landing .pricing .container .card .period {
  color: var(--text-lighter);
  margin-bottom: 1rem;
}

.landing .pricing .container .card .description {
  color: var(--text-lighter);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.landing .pricing .container .card .features {
  list-style: none;
  margin-bottom: 2rem;
}

.landing .pricing .container .card .features li {
  color: var(--text-light);
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: .75rem;
}

.landing .pricing .container .card .features .checkmark {
  color: var(--primary);
  font-weight: 700;
}

.team {
  font-family: "Lexend Deca", sans-serif;
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  color: var(--text-light);
  overflow-x: hidden;
  min-height: 100vh;
  user-select: none;
}

.team .hero-team {
  margin-top: 83px;
  padding: 5rem 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .hero-team .title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: #ff0055;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.team .hero-team .sub {
  font-size: 1.1rem;
  color: var(--text-lighter);
  line-height: 1.6;
}

.team .members {
  padding: 2rem 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

.team .members .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.team .members .grid .card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-card), rgba(255, 0, 85, 0.1));
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 0, 85, 0.1),
    inset 0 -1px 0 rgba(255, 0, 85, 0.1),
    inset 0 0 18px 9px rgba(255, 0, 85, 0.05);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.team .members .grid .card .shine {
  position: absolute;
  top: -50%;
  right: -100%;
  width: 30%;
  height: 200%;
  background: linear-gradient(120deg,
      transparent 0%,
      rgba(255, 255, 255, 0.25) 40%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0.25) 60%,
      transparent 100%);
  transform: skewX(-20deg);
  opacity: 0;
  pointer-events: none;
  transition: all 1s ease-out;
  z-index: 5;
}

.team .members .grid .card:hover .shine {
  opacity: 1;
  right: 150%;
}

.team .members .grid .card .image {
  width: 100px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
  margin-bottom: 1.5rem;
}

.team .members .grid .card h3 {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.team .members .grid .card .role {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team .members .grid .card .bio {
  color: var(--text-lighter);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.team .members .grid .card .social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.team .members .grid .card .social-links a {
  color: var(--text-lighter);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.team .members .grid .card .social-links a:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255, 0, 85, 0.1);
}

.team .members .grid .card .partner {
  font-size: 0.8rem;
  color: #fff;
  background: #ffffff20;
  padding: .1rem .3rem .1rem .2rem;
  border-radius: 6px;
  font-weight: 600;
  width: fit-content;
  display: inline-flex;
  gap: .2rem;
}

@media (max-width: 640px) {
  .team .members .grid .card .partner {
    align-items: center;
    justify-content: center;
    padding: .1rem .2rem !important;
  }
}

.team .members .grid .card .partner-card {
  position: absolute;
  bottom: 25%;
  left: 50%;
  background: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffffff20;
  border-radius: .5rem;
  padding: .7rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
}

.team .members .grid .card .partner-card .partner-arrow {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  width: .8rem;
  height: .8rem;
  background-color: #303030;
  border-bottom-right-radius: .3rem;
  border-right: 1px solid #ffffff20;
  border-bottom: 1px solid #ffffff20;
}

.team .members .grid .card .partner:hover+.partner-card {
  opacity: 1;
  transform: translateX(-50%);
}

/*.team .members .grid .card .partner-card .partner-avatar {
  width: 22px;
  height: 22px;
  margin: 0 .3rem 0 0;
}

.team .members .grid .card .partner-card .partner-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
}*/

.team .members .grid .card .partner-card .partner-name {
  font-size: 0.9rem;
  color: white;
  font-weight: 600;
}

.feature-card-modern {
  background: #0f0f13;
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 350px;
}

.feature-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border-color: var(--primary-dark);
}

.modern-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.modern-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #aaa;
  margin-bottom: 2rem;
  max-width: 90%;
}

.node-graph-viz {
  position: relative;
  height: 200px;
  margin-top: auto;
}

.node-item {
  position: absolute;
  background: rgba(30, 34, 45, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.node-links {
  top: 30%;
  left: 10%;
}

.node-mentions {
  top: 20%;
  right: 5%;
}

.node-spoilers {
  bottom: 20%;
  left: 0%;
}

.node-invites {
  bottom: 30%;
  right: 15%;
}

.node-center {
  position: absolute;
  top: 60%;
  left: 45%;
  width: 20px;
  height: 20px;
  color: var(--primary);
  font-size: 20px;
  z-index: 1;
}

.node-line-vertical {
  position: absolute;
  top: 25%;
  left: 45%;
  width: 1px;
  height: 50%;
  border-left: 1px dashed rgba(255, 255, 255, 0.1);
}

.node-line-horizontal {
  position: absolute;
  top: 40%;
  left: 20%;
  width: 60%;
  height: 1px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}


.shield-viz-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 180px;
  position: relative;
}

.shield-icon {
  font-size: 5rem;
  color: var(--primary-dark);
  position: relative;
  z-index: 2;
  background: radial-gradient(circle at center, rgba(255, 0, 85, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  padding: 2rem;
  width: 120px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 0, 85, 0.1);
  box-shadow: 0 0 30px rgba(255, 0, 85, 0.05);
}

.shield-icon i.fa-shield-alt {
  font-size: 5rem;
}

.key-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  color: var(--primary);
  z-index: 3;
}

.shield-grid-lines {
  position: absolute;
  width: 160px;
  height: 160px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.radar-viz-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.radar-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c1 {
  width: 100px;
  height: 100px;
}

.c2 {
  width: 220px;
  height: 220px;
}

.c3 {
  width: 340px;
  height: 340px;
}

.radar-sweep {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 170px;
  height: 170px;
  background: conic-gradient(from 0deg, transparent 0%, rgba(255, 0, 85, 0.1) 20%, rgba(255, 0, 85, 0.3) 25%, transparent 30%);
  transform-origin: top left;
  animation: radarSpin 4s linear infinite;
}

@keyframes radarSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.radar-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px #fff;
  opacity: 0;
  animation: radarPulse 4s infinite;
}

.d1 {
  top: 40%;
  left: 60%;
  animation-delay: 0.5s;
}

.d2 {
  top: 60%;
  left: 30%;
  animation-delay: 2s;
  background: #ff4d4d;
  box-shadow: 0 0 10px #ff4d4d;
}

.d3 {
  top: 20%;
  left: 45%;
  animation-delay: 3s;
}

@keyframes radarPulse {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }

  100% {
    opacity: 0;
  }
}

.user-scan-viz {
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.user-icon-large {
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.3);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  width: 100px;
  height: 140px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
  animation: scanMove 2s ease-in-out infinite alternate;
  z-index: 5;
  width: 100%;
}

@keyframes scanMove {
  0% {
    top: 10%;
    opacity: 0.5;
  }

  100% {
    top: 90%;
    opacity: 1;
  }
}

.identity-viz {
  height: 180px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.id-card-mock {
  width: 140px;
  height: 90px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px;
  gap: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transform: rotate(-5deg);
}

.id-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-dark);
}

.id-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.id-line {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
}

.id-line.l1 {
  width: 80%;
}

.id-line.l2 {
  width: 50%;
}

.id-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.whitelist-viz {
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 0 2rem;
}

.wl-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.wl-item.dim {
  opacity: 0.5;
}

.wl-line {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.uptime-viz {
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.server-icon {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.1);
}

.uptime-badge {
  position: absolute;
  bottom: 30px;
  background: rgba(0, 255, 136, 0.1);
  color: #00ff88;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 136, 0.3);
  font-weight: bold;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ff88;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

.support-viz {
  height: 180px;
  position: relative;
}

.chat-bubble {
  position: absolute;
  padding: 12px 18px;
  border-radius: 12px;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.b1 {
  background: rgba(255, 255, 255, 0.1);
  top: 30%;
  left: 20%;
  border-bottom-left-radius: 2px;
  animation: float 3s infinite ease-in-out;
}

.b2 {
  background: var(--primary);
  top: 50%;
  right: 20%;
  border-bottom-right-radius: 2px;
  animation: float 3s infinite ease-in-out 1.5s;
}

.typing-dots span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  margin: 0 2px;
  animation: typing 1.4s infinite;
}

.typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.pricing-card {
  background: #0f0f13;
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  height: 100%;
}

.pricing-card.free:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.pricing-card.premium {
  background: linear-gradient(135deg, rgba(255, 0, 85, 0.05) 0%, #0f0f13 100%);
  border: 1px solid rgba(255, 0, 85, 0.3);
  box-shadow: 0 10px 40px rgba(255, 0, 85, 0.1);
}

.pricing-card.premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(255, 0, 85, 0.2);
  border-color: var(--primary);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.plan-price {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.premium .plan-price {
  color: var(--primary);
  text-shadow: 0 0 20px rgba(255, 0, 85, 0.3);
}

.plan-price .currency {
  font-size: 1.5rem;
  font-weight: 500;
  color: #aaa;
}

.plan-price .period {
  font-size: 1rem;
  font-weight: 500;
  color: #666;
}

.plan-price-sub {
  font-size: 0.9rem;
  color: #aaa;
  margin-top: -5px;
  margin-bottom: 10px;
}

.plan-desc {
  color: #888;
  font-size: 0.95rem;
  line-height: 1.5;
}

.plan-features {
  list-style: none;
  margin-bottom: 2.5rem;
  flex: 1;
}

.plan-features li {
  padding: 10px 0;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li i {
  color: var(--primary);
  font-size: 1.1rem;
}

.free .plan-features li i {
  color: #fff;
}

.plan-features li.disabled {
  color: #444;
  text-decoration: line-through;
}

.plan-features li.disabled i {
  color: #444;
}

.btn-pricing {
  display: block;
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.btn-pricing.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-pricing.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn-pricing.primary {
  background: var(--primary);
  color: #000;
  box-shadow: 0 5px 20px rgba(255, 0, 85, 0.3);
}

.btn-pricing.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 0, 85, 0.5);
  background: #fff;
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #000;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(255, 0, 85, 0.3);
  z-index: 2;
}

.more-features-section {
  text-align: center;
}

.arc-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at top, rgba(255, 0, 85, 0.15), transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.mf-header {
  margin-bottom: 4rem;
  position: relative;
}

.floating-icons-arc {
  height: 100px;
  width: 400px;
  margin: 0 auto 1rem;
  position: relative;
}

.f-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: floatIcon 4s ease-in-out infinite;
}

.f-icon.i3 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: var(--primary);
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  border-color: rgba(255, 0, 85, 0.3);
  box-shadow: 0 0 20px rgba(255, 0, 85, 0.2);
  z-index: 2;
}

.f-icon.i2 {
  top: 20px;
  left: 30%;
  animation-delay: 1s;
}

.f-icon.i4 {
  top: 20px;
  right: 30%;
  animation-delay: 1.5s;
}

.f-icon.i1 {
  top: 50px;
  left: 10%;
  animation-delay: 2s;
}

.f-icon.i5 {
  top: 50px;
  right: 10%;
  animation-delay: 2.5s;
}

@keyframes floatIcon {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-10px) translateX(0);
  }
}

@keyframes floatIconCenter {

  0%,
  100% {
    transform: translateY(0) translateX(-50%);
  }

  50% {
    transform: translateY(-10px) translateX(-50%);
  }
}

.f-icon.i3 {
  animation-name: floatIconCenter;
}

.mf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 968px) {
  .mf-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .mf-grid {
    grid-template-columns: 1fr;
  }
}

.mf-card {
  background: #0f0f13;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 2rem;
  text-align: left;
  transition: all 0.3s ease;
}

.mf-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mf-icon-box {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.mf-card:hover .mf-icon-box {
  background: var(--primary);
  color: #000;
}

.mf-card h3 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.mf-card p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.6;
}