 /* ---------------- Root Theme ---------------- */
 :root {
   --bg-main: #020617;
   --glass-bg: rgba(255, 255, 255, 0.04);
   --glass-border: rgba(255, 255, 255, 0.12);
   --neon1: #00f5ff;
   --neon2: #7c7cff;
   --text-main: #e5e7eb;
 }

 html {
   scroll-behavior: smooth;
 }

 body {
   min-height: 100vh;
   display: flex;
   flex-direction: column;

   background:
     radial-gradient(circle at top, #0f172a, #020617),
     linear-gradient(180deg, #020617, #000);

   color: var(--text-main);
   font-family: system-ui, -apple-system, Segoe UI, sans-serif;
   overflow-x: hidden;
 }

 /* ---------------- Scrollbar ---------------- */
 ::-webkit-scrollbar {
   width: 10px;
 }

 ::-webkit-scrollbar-track {
   background: #020617;
 }

 ::-webkit-scrollbar-thumb {
   background: linear-gradient(180deg, var(--neon1), var(--neon2));
   border-radius: 10px;
 }

 /* ---------------- Ghost Navbar ---------------- */
 .ghost-navbar {
   min-height: 68px;
   position: sticky;
   top: 0;
   z-index: 1000;

   background: rgba(2, 6, 23, 0.6);
   backdrop-filter: blur(18px);
   -webkit-backdrop-filter: blur(18px);

   border-bottom: 1px solid rgba(0, 245, 255, 0.18);
   box-shadow:
     0 10px 30px rgba(0, 0, 0, 0.6),
     0 0 25px rgba(0, 245, 255, 0.15);

   animation: navbarSlide 0.8s ease forwards;
 }

 @keyframes navbarSlide {
   from {
     transform: translateY(-20px);
     opacity: 0;
   }

   to {
     transform: translateY(0);
     opacity: 1;
   }
 }

 /* Brand */
 .ghost-brand {
   cursor: pointer;
   transition: transform 0.3s ease;
 }

 .ghost-brand:hover {
   transform: translateY(-2px);
 }

 @keyframes ghostLogoGlow {

   0%,
   100% {
     filter:
       drop-shadow(0 0 6px rgba(0, 245, 255, 0.55)) drop-shadow(0 0 14px rgba(124, 124, 255, 0.4)) drop-shadow(0 0 26px rgba(0, 245, 255, 0.3));
   }

   50% {
     filter:
       drop-shadow(0 0 10px rgba(0, 245, 255, 0.85)) drop-shadow(0 0 22px rgba(124, 124, 255, 0.65)) drop-shadow(0 0 40px rgba(0, 245, 255, 0.45));
   }
 }

 .ghost-logo {
   width: 68px;
   height: 68px;
   animation: ghostLogoGlow 3.5s ease-in-out infinite;
 }


 .ghost-brand-text {
   line-height: 1.2;
   font-weight: 800;
   letter-spacing: 0.12em;
   text-transform: uppercase;

   background: linear-gradient(90deg,
       #00f5ff,
       #7c7cff,
       #b84dff,
       #00f5ff);
   background-size: 300% 100%;
   background-clip: text;
   -webkit-background-clip: text;
   color: transparent;

   animation: brandGlow 6s linear infinite;
 }




 @keyframes brandGlow {
   0% {
     background-position: 0% 50%;
   }

   100% {
     background-position: 300% 50%;
   }
 }

 /* Nav Links */
 .ghost-nav-links {
   display: flex;
   gap: 22px;
 }

 .ghost-link {
   line-height: 1.4;
   position: relative;
   text-decoration: none;
   font-size: 14px;
   letter-spacing: 0.14em;
   text-transform: uppercase;
   color: #e5e7eb;
   opacity: 0.85;
   transition: all 0.3s ease;
 }

 .ghost-link::after {
   content: "";
   position: absolute;
   left: 0;
   bottom: -6px;
   width: 0%;
   height: 2px;
   background: linear-gradient(90deg, #00f5ff, #7c7cff);
   transition: width 0.3s ease;
 }

 .ghost-link:hover {
   opacity: 1;
   color: #00f5ff;
   text-shadow: 0 0 8px rgba(0, 245, 255, 0.6);
 }

 .ghost-link:hover::after {
   width: 100%;
 }

 /* Mobile fallback */
 @media (max-width: 768px) {
   .ghost-nav-links {
     gap: 14px;
   }
 }


 /* Navbar inner layout */
.ghost-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Hamburger button */
.ghost-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.ghost-menu-btn span {
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, #00f5ff, #7c7cff);
  border-radius: 2px;
}

/* Mobile layout */
@media (max-width: 768px) {
  .ghost-menu-btn {
    display: flex;
  }

  .ghost-nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    flex-direction: column;
    gap: 18px;
    padding: 24px;
    background: rgba(2, 6, 23, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(0, 245, 255, 0.2);

    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s ease;
  }

  .ghost-nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}



 /* ---------------- Ghost Tagline ---------------- */
 .ghost-tagline {
   text-align: center;
   margin: 32px 0 48px;

   font-size: clamp(1.3rem, 2.4vw, 1.7rem);
   font-weight: 700;
   letter-spacing: 0.28em;
   text-transform: uppercase;

   /* no fill */
   color: transparent;
   -webkit-text-fill-color: transparent;

   /* bold animated stroke */
   -webkit-text-stroke: 2.5px transparent;

   /* new neon style (electric ghost tone) */
   background: linear-gradient(120deg,
       #00f5ff,
       #4cffc1,
       #9d7bff,
       #00f5ff);
   background-size: 300% 100%;
   background-position: 0% 50%;

   -webkit-background-clip: text;
   background-clip: text;

   animation: ghostOutlineFlow 5s linear infinite;
 }

 /* subtle glow without fill */
 .ghost-tagline::after {
   content: attr(data-text);
   position: absolute;
   inset: 0;
   z-index: -1;
   filter: blur(8px);
   opacity: 0.45;
 }

 /* animation */
 @keyframes ghostOutlineFlow {
   0% {
     background-position: 0% 50%;
   }

   100% {
     background-position: 300% 50%;
   }
 }

 @keyframes ghostPulse {

   0%,
   100% {
     text-shadow: 0 0 6px rgba(0, 245, 255, 0.35);
   }

   50% {
     text-shadow: 0 0 14px rgba(157, 123, 255, 0.6);
   }
 }

 .ghost-tagline {
   animation:
     ghostOutlineFlow 5s linear infinite,
     ghostPulse 2.8s ease-in-out infinite;
 }


 /* ---------------- Glass Card ---------------- */
 .glass-card {
   background: var(--glass-bg);
   backdrop-filter: blur(18px);
   -webkit-backdrop-filter: blur(18px);
   border: 1px solid var(--glass-border);
   border-radius: 22px;
   box-shadow:
     inset 0 1px 0 rgba(255, 255, 255, 0.08),
     0 20px 40px rgba(0, 0, 0, 0.5);
   transition: transform 0.4s ease, box-shadow 0.4s ease;
 }

 .glass-card:hover {
   transform: translateY(-6px);
   box-shadow:
     inset 0 1px 0 rgba(255, 255, 255, 0.12),
     0 30px 60px rgba(0, 0, 0, 0.7);
 }

 /* ---------------- Inputs ---------------- */
 textarea,
 input {
   background: rgba(0, 0, 0, 0.55);
   border: 1px solid rgba(255, 255, 255, 0.15);
   color: var(--text-main);
 }

 textarea:focus,
 input:focus {
   box-shadow: 0 0 0 2px rgba(0, 245, 255, 0.3);
   border-color: var(--neon1);
   background: rgba(0, 0, 0, 0.65);
 }

 /* ---------------- Buttons ---------------- */
 .btn-neon {
   border: 1px solid var(--neon1);
   color: var(--neon1);
   background: transparent;
   position: relative;
   overflow: hidden;
   transition: color 0.3s ease;
 }

 .btn-neon::before {
   content: "";
   position: absolute;
   inset: 0;
   background: linear-gradient(120deg, var(--neon1), var(--neon2));
   opacity: 0;
   transition: opacity 0.3s ease;
   z-index: -1;
 }

 .btn-neon:hover {
   color: #020617;
 }

 .btn-neon:hover::before {
   opacity: 1;
 }

 /* ---------------- Divider ---------------- */
 .divider {
   height: 1px;
   background: linear-gradient(to right,
       transparent,
       var(--neon1),
       transparent);
   margin: 22px 0;
 }

 /* ---------------- Code Box ---------------- */
 .code-box {
   font-size: 32px;
   letter-spacing: 6px;
   font-weight: 700;
   background: linear-gradient(90deg, var(--neon1), var(--neon2));
   -webkit-background-clip: text;
   background-clip: text;
   color: transparent;
   animation: gradientMove 6s linear infinite;
 }

 /* ---------------- Ghost Footer ---------------- */
 .ghost-footer {
   margin-top: 80px;
   padding: 32px 0 28px;

   background: rgba(2, 6, 23, 0.55);
   backdrop-filter: blur(16px);
   -webkit-backdrop-filter: blur(16px);

   border-top: 1px solid rgba(0, 245, 255, 0.18);
   box-shadow:
     0 -10px 30px rgba(0, 0, 0, 0.6),
     0 0 25px rgba(0, 245, 255, 0.12);
 }

 /* text */
 .ghost-footer-text {
   font-size: 13px;
   letter-spacing: 0.12em;
   text-transform: uppercase;
   opacity: 0.8;
 }

 .ghost-footer-sub {
   margin-top: 6px;
   font-size: 12px;
   opacity: 0.65;
 }

 /* author highlight */
 .ghost-author {
   font-weight: 600;
   letter-spacing: 0.16em;

   background: linear-gradient(90deg,
       #00f5ff,
       #9d7bff,
       #00f5ff);
   background-size: 300% 100%;
   background-clip: text;
   -webkit-background-clip: text;
   color: transparent;

   animation: authorGlow 6s linear infinite;
 }

 @keyframes authorGlow {
   0% {
     background-position: 0% 50%;
   }

   100% {
     background-position: 300% 50%;
   }
 }

 .ghost-main {
   flex: 1;
   display: flex;
   flex-direction: column;
 }

 /* ---------- Ghost Stats Section ---------- */
 .ghost-stats {
   overflow: hidden;
   padding: 140px 0;
   position: relative;
   background:
     radial-gradient(circle at top, rgba(255, 80, 80, 0.08), transparent 60%),
     linear-gradient(180deg, #020617, #020617);
 }

 /* ---------- Card ---------- */
 .ghost-stat-card {
   position: relative;
   padding: 64px 24px;
   border-radius: 22px;

   background:
     linear-gradient(180deg,
       rgba(255, 255, 255, 0.06),
       rgba(0, 0, 0, 0.35));

   backdrop-filter: blur(14px);
   -webkit-backdrop-filter: blur(14px);

   border: 1px solid rgba(255, 80, 80, 0.25);

   box-shadow:
     inset 0 1px 0 rgba(255, 255, 255, 0.08),
     0 40px 90px rgba(0, 0, 0, 0.8);

   overflow: hidden;
   transition: transform 0.4s ease, box-shadow 0.4s ease;
 }

 /* Hover lift */
 .ghost-stat-card:hover {
   transform: translateY(-10px);
   box-shadow:
     inset 0 1px 0 rgba(255, 255, 255, 0.12),
     0 60px 120px rgba(0, 0, 0, 0.9);
 }

 /* ---------- Ambient Glow Layer ---------- */
 .ghost-stat-card::before {
   content: "";
   position: absolute;
   inset: -2px;
   border-radius: inherit;
   background:
     radial-gradient(circle at top,
       rgba(255, 80, 80, 0.45),
       transparent 70%);
   opacity: 0.35;
   filter: blur(30px);
   pointer-events: none;
 }

 .ghost-stats-tagline{
    text-align: center;
    margin-bottom: 48px;
  
    font-size: clamp(1.4rem, 2.6vw, 1.8rem);
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
  
    /* no fill */
    color: transparent;
    -webkit-text-fill-color: transparent;
  
    /* bold animated stroke */
    -webkit-text-stroke: 2.5px transparent;
  
    /* new neon style (electric ghost tone) */
    background: linear-gradient(120deg,
        #ff4d4d,
        #ff5c4d,
        #ff4d4d);
    background-size: 300% 100%;
    background-position: 0% 50%;
  
    -webkit-background-clip: text;
    background-clip: text;
  
    animation: ghostOutlineFlow 7s linear infinite;
 }

 
 /* ---------- Number ---------- */
 .ghost-stat-number {
   font-size: clamp(3.2rem, 5vw, 4.4rem);
   font-weight: 900;
   letter-spacing: 0.22em;

   color: transparent;
   -webkit-text-stroke: 2.5px #ff4d4d;

   filter:
     drop-shadow(0 0 12px rgba(255, 80, 80, 0.5)) drop-shadow(0 0 28px rgba(255, 80, 80, 0.35));

   margin-bottom: 20px;
 }

 /* ---------- Label ---------- */
 .ghost-stat-label {
   font-size: 0.72rem;
   letter-spacing: 0.32em;
   text-transform: uppercase;
   color: rgba(255, 255, 255, 0.75);
 }

 /* ---------- Subtle Floating (Gaming Feel) ---------- */
 @keyframes ghostFloat {

   0%,
   100% {
     transform: translateY(0);
   }

   50% {
     transform: translateY(-6px);
   }
 }


 /* ---------- Share Popup ---------- */
 .ghost-share-overlay {
   position: fixed;
   inset: 0;
   background: rgba(2, 6, 23, 0.8);
   backdrop-filter: blur(10px);

   display: none;
   align-items: center;
   justify-content: center;

   z-index: 9999;
 }

 .ghost-share-overlay.active {
   display: flex;
 }

 .ghost-share-popup {
   width: min(420px, 90%);
   padding: 32px;
   border-radius: 22px;

   background: rgba(255, 255, 255, 0.05);
   backdrop-filter: blur(18px);

   border: 2px solid rgba(157, 123, 255, 0.6);
   box-shadow:
     0 30px 80px rgba(0, 0, 0, 0.8),
     0 0 40px rgba(157, 123, 255, 0.4);
 }

 .ghost-share-popup h3 {
   text-align: center;
   margin-bottom: 24px;
   font-size: 14px;
   letter-spacing: 0.18em;
   text-transform: uppercase;
 }

 .ghost-share-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 14px;
 }

 .ghost-share-grid a {
   text-align: center;
   padding: 12px;
   border-radius: 12px;

   border: 1px solid rgba(157, 123, 255, 0.5);
   color: #e5e7eb;
   text-decoration: none;

   font-size: 12px;
   letter-spacing: 0.14em;
   text-transform: uppercase;

   transition: all 0.3s ease;
 }

 .ghost-share-grid a:hover {
   color: #00f5ff;
   border-color: #00f5ff;
   box-shadow: 0 0 14px rgba(0, 245, 255, 0.4);
 }

 .ghost-share-close {
   margin-top: 22px;
   width: 100%;
   padding: 10px;
   border-radius: 999px;

   background: transparent;
   border: 1px solid rgba(255, 255, 255, 0.3);
   color: #9ca3af;

   letter-spacing: 0.14em;
   text-transform: uppercase;
 }

 /* ---------- Share Text Grid ---------- */
 .ghost-share-grid.text-only {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 14px;
 }

 .share-text {
   text-align: center;
   padding: 14px 10px;
   border-radius: 14px;

   font-size: 13px;
   letter-spacing: 0.16em;
   text-transform: uppercase;
   text-decoration: none;

   background: rgba(255, 255, 255, 0.03);
   border: 1px solid rgba(255, 255, 255, 0.15);

   transition:
     background-color 0.35s ease,
     color 0.35s ease,
     box-shadow 0.35s ease,
     transform 0.35s ease;
 }

 /* subtle lift */
 .share-text:hover {
   transform: translateY(-3px);
 }

 /* ---------- PLATFORM COLORS + FONTS ---------- */

 /* Copy */
 .share-text.copy {
   color: #00f5ff;
   font-family: system-ui, monospace;
   grid-column: 1 / -1;
 }

 .share-text.copy:hover {
   background: #00f5ff;
   color: #020617;
   box-shadow: 0 0 18px rgba(0, 245, 255, 0.6);
 }

 /* WhatsApp */
 .share-text.whatsapp {
   color: #25D366;
   font-family: system-ui, sans-serif;
 }

 .share-text.whatsapp:hover {
   background: #25D366;
   color: #020617;
   box-shadow: 0 0 18px rgba(37, 211, 102, 0.6);
 }

 /* Facebook */
 .share-text.facebook {
   color: #1877F2;
   font-family: system-ui, sans-serif;
 }

 .share-text.facebook:hover {
   background: #1877F2;
   color: #020617;
   box-shadow: 0 0 18px rgba(24, 119, 242, 0.6);
 }

 /* Telegram */
 .share-text.telegram {
   color: #229ED9;
   font-family: system-ui, sans-serif;
 }

 .share-text.telegram:hover {
   background: #229ED9;
   color: #020617;
   box-shadow: 0 0 18px rgba(34, 158, 217, 0.6);
 }

 /* Reddit */
 .share-text.reddit {
   color: #FF4500;
   font-family: system-ui, sans-serif;
 }

 .share-text.reddit:hover {
   background: #FF4500;
   color: #020617;
   box-shadow: 0 0 18px rgba(255, 69, 0, 0.6);
 }

 /* X (Twitter) */
 .share-text.x {
   color: #e5e7eb;
   font-family: system-ui, sans-serif;
 }

 .share-text.x:hover {
   background: #000000;
   color: #ffffff;
   box-shadow: 0 0 18px rgba(255, 255, 255, 0.4);
 }

 /* Instagram */
 .share-text.instagram {
   color: #E1306C;
   font-family: system-ui, sans-serif;
 }

 .share-text.instagram:hover {
   background: linear-gradient(45deg,
       #FCAF45,
       #E1306C,
       #833AB4);
   color: #020617;
   box-shadow: 0 0 22px rgba(225, 48, 108, 0.6);
 }


 /* copy link button */
 .copy-link-btn {
   background: transparent;
   border: 1.5px solid rgba(0, 245, 255, 0.7);
   color: #00f5ff;
   padding: 10px 10px;
   font-size: 16px;
   border-radius: 8px;
   cursor: pointer;
   transition: all 0.25s ease;
   box-shadow: 0 0 8px rgba(0, 245, 255, 0.25);
   line-height: 1;
   /* margin-left: auto; */
 }

 .copy-link-btn:hover {
   background: rgba(0, 245, 255, 0.12);
   box-shadow:
     0 0 12px rgba(0, 245, 255, 0.6),
     inset 0 0 6px rgba(0, 245, 255, 0.35);
 }

 .copy-link-btn:active {
   transform: scale(0.95);
 }

 .copy-link-btn:focus {
   outline: none;
   box-shadow:
     0 0 0 2px rgba(0, 245, 255, 0.4),
     0 0 14px rgba(0, 245, 255, 0.6);
 }

 .share-row {
   display: flex;
   align-items: center;
   gap: 12px;
 }





 /* ---------- How It Works ---------- */
.ghost-how-it-works {
  padding: 140px 0;
  position: relative;
  background:
    radial-gradient(circle at center, rgba(124,124,255,0.08), transparent 65%);
}

/* Title */
.ghost-section-title {
  text-align: center;
  margin-bottom: 90px;

  font-size: 32px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-weight: 700;

  color: transparent;
  background: linear-gradient(90deg, #00f5ff, #7c7cff);
  background-clip: text;
  -webkit-background-clip: text;
}

/* Flow container */
.ghost-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  position: relative;
}

/* Neon spine */
.ghost-flow::before {
  content: "";
  position: absolute;
  top: 55px;
  left: 0;
  right: 0;
  height: 2px;

  background: linear-gradient(
    90deg,
    transparent,
    #00f5ff,
    #7c7cff,
    #00f5ff,
    transparent
  );

  opacity: 0.55;
}

/* Step card */
.ghost-step {
  position: relative;
  padding: 48px 28px;
  border-radius: 24px;

  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);

  border: 1px solid rgba(255,255,255,0.14);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 25px 60px rgba(0,0,0,0.6);

  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

/* Hover lift */
.ghost-step:hover {
  transform: translateY(-12px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 45px 90px rgba(0,0,0,0.8);
}

/* Step number */
.ghost-step-number {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 0.28em;

  color: transparent;
  -webkit-text-stroke: 2px #00f5ff;

  margin-bottom: 22px;

  filter:
    drop-shadow(0 0 12px rgba(0,245,255,0.6));
}

/* Title */
.ghost-step-title {
  font-size: 20px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 14px;

  color: #e5e7eb;
}

/* Description */
.ghost-step-desc {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.75;
}

/* Mobile */
@media (max-width: 900px) {
  .ghost-flow {
    grid-template-columns: 1fr;
  }

  .ghost-flow::before {
    display: none;
  }
}


/* ---------- Ghost Metrics ---------- */
.ghost-metrics {
  padding: 160px 0;
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(circle at top, rgba(0,245,255,0.06), transparent 55%),
    linear-gradient(180deg, #020617, #020617);
}

/* Header */
.ghost-metrics-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.ghost-metrics-kicker {
  display: inline-block;
  margin-bottom: 14px;

  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;

  color: rgba(0,245,255,0.7);
}

.ghost-metrics-title {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;

  color: transparent;
  background: linear-gradient(90deg, #00f5ff, #7c7cff);
  background-clip: text;
  -webkit-background-clip: text;

  margin-bottom: 16px;
}


/* Grid */
.ghost-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Card */
.ghost-metric-card {
  position: relative;
  padding: 52px 36px;
  border-radius: 26px;

  background: rgba(255,255,255,0.045);
  backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.14);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 40px 90px rgba(0,0,0,0.7);

  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.ghost-metric-card:hover {
  transform: translateY(-10px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 60px 120px rgba(0,0,0,0.85);
}

/* Value */
.ghost-metric-value {
  font-size: clamp(2.8rem, 4.8vw, 3.8rem);
  font-weight: 900;
  letter-spacing: 0.22em;

  color: transparent;
  -webkit-text-stroke: 2px #00f5ff;

  filter:
    drop-shadow(0 0 14px rgba(0,245,255,0.55));

  margin-bottom: 22px;
}

/* Label */
.ghost-metric-label {
  font-size: 18px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 10px;

  color: #e5e7eb;
}

/* Hint */
.ghost-metric-hint {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.55;
}

/* Mobile */
@media (max-width: 900px) {
  .ghost-metrics-grid {
    grid-template-columns: 1fr;
  }
}





/* ---------- Security Zone ---------- */
.ghost-security-zone {
  padding: 160px 0;
  position: relative;

  background:
    radial-gradient(circle at center, rgba(0,245,255,0.08), transparent 70%);
}

/* Stack container */
.ghost-security-stack {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

/* Shield glow background */
.ghost-security-stack::before {
  content: "";
  position: absolute;
  inset: -60px;
  border-radius: 40px;

  background:
    radial-gradient(circle at top, rgba(124,124,255,0.18), transparent 65%);

  filter: blur(60px);
  opacity: 0.6;
  z-index: 0;
}

/* Layer cards */
.ghost-security-layer {
  position: relative;
  z-index: 1;

  padding: 28px 34px;
  margin-bottom: 18px;
  border-radius: 22px;

  background: rgba(255,255,255,0.045);
  backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.16);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 30px 70px rgba(0,0,0,0.65);

  transform: translateZ(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover depth */
.ghost-security-layer:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 45px 90px rgba(0,0,0,0.8);
}

/* Titles */
.ghost-security-layer strong {
  display: block;
  font-size: 16px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 8px;

  color: #00f5ff;
}

/* Description */
.ghost-security-layer span {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.8;
}

/* Subtle depth offsets */
.layer-1 { transform: translateX(0); }
.layer-2 { transform: translateX(18px); }
.layer-3 { transform: translateX(36px); }
.layer-4 { transform: translateX(18px); }
.layer-5 { transform: translateX(0); }

/* Ambient drift */
@keyframes ghostLayerFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.layer-1 { animation: ghostLayerFloat 7s ease-in-out infinite; }
.layer-2 { animation: ghostLayerFloat 8s ease-in-out infinite; }
.layer-3 { animation: ghostLayerFloat 9s ease-in-out infinite; }
.layer-4 { animation: ghostLayerFloat 8s ease-in-out infinite; }
.layer-5 { animation: ghostLayerFloat 7s ease-in-out infinite; }

/* Mobile */
@media (max-width: 768px) {
  .layer-1,
  .layer-2,
  .layer-3,
  .layer-4,
  .layer-5 {
    transform: none;
    animation: none;
  }
}
/* ---------- Security Grid ---------- */
.ghost-security-grid {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
}

/* Ghosty animated background */
.ghost-security-bg {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 20% 30%, rgba(0,245,255,0.12), transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(124,124,255,0.14), transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(0,245,255,0.1), transparent 50%);
  filter: blur(80px);
  animation: ghostFog 18s ease-in-out infinite;
  z-index: 0;
}

@keyframes ghostFog {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-6%, -4%) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}

/* Grid */
.ghost-grid {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* Cards */
.ghost-grid-card {
  min-height: 150px;
  padding: 28px 30px;
  border-radius: 22px;

  background: rgba(255,255,255,0.045);
  backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.16);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 30px 70px rgba(0,0,0,0.6);

  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.ghost-grid-card:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 45px 90px rgba(0,0,0,0.75);
}

/* Titles */
.ghost-grid-card strong {
  display: block;
  margin-bottom: 10px;

  font-size: 20px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #00f5ff;
}

/* Text */
.ghost-grid-card span {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.8;
}

/* Center core */
.ghost-grid-center {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background:
    radial-gradient(circle at center, rgba(0,245,255,0.18), transparent 65%);
}

.ghost-core-text {
  font-size: 28px !important;
  letter-spacing: 0.34em;
  font-weight: 700;
  text-transform: uppercase;

  color: transparent;
  -webkit-text-stroke: 1.2px #00f5ff;
}

/* Muted filler cells */
.ghost-grid-card.muted {
  background: rgba(255,255,255,0.02);
  border: 1px dashed rgba(255,255,255,0.08);
  box-shadow: none;
}

/* Mobile */
@media (max-width: 900px) {
  .ghost-grid {
    grid-template-columns: 1fr;
  }

  .ghost-grid-card.muted {
    display: none;
  }
}



/* ---------- Ghost Guide (Readable) ---------- */
.ghost-guide {
  padding: 140px 0 40px;
}

/* Log container */
.ghost-guide-log {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  padding-left: 48px;
}

/* Vertical system line */
.ghost-guide-log::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  bottom: 0;

  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    #00f5ff,
    #7c7cff,
    transparent
  );

  opacity: 0.7;
}

/* Log item */
.ghost-log-item {
  display: flex;
  gap: 32px;
  margin-bottom: 56px;
}

/* Index */
.ghost-log-index {
  min-width: 44px;

  font-size: 18px;
  letter-spacing: 0.32em;
  font-weight: 800;

  color: transparent;
  -webkit-text-stroke: 2px #00f5ff;

  line-height: 1.2;
}

/* Content title */
.ghost-log-content strong {
  display: block;
  margin-bottom: 10px;

  font-size: 18px;
  letter-spacing: 0.26em;
  text-transform: uppercase;

  color: #00f5ff;
}

/* Content text */
.ghost-log-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  opacity: 0.85;
  max-width: 760px;
}

/* Mobile */
@media (max-width: 768px) {
  .ghost-guide-log {
    padding-left: 26px;
  }

  .ghost-log-item {
    gap: 18px;
  }

  .ghost-log-content p {
    font-size: 15px;
  }
}

