/* 
# ─────────────────────────────────────────────
# 🛠️ NEXKY DEVELOPMENT
# 📄 File Info    : tools\scraper-journal\assets\main.css
# 📅 Waktu : 20-08-2026 | 23:35:14 WIB
# ─────────────────────────────────────────────
*/


      :root {
        --pink-1: #fff8fa;
        --pink-2: #fff0f5;
        --pink-3: #ffe5ed;
        --pink-4: #f9b3c6;
        --pink-5: #ee87a6;
        --pink-6: #d9698b;
        --berry: #9f4b68;
        --text: #633747;
      }

      * {
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        min-height: 100vh;
        overflow-x: hidden;
        color: var(--text);
        background:
          radial-gradient(
            circle at 10% 5%,
            rgba(255, 255, 255, 0.95),
            transparent 28%
          ),
          radial-gradient(
            circle at 90% 15%,
            rgba(244, 154, 181, 0.2),
            transparent 30%
          ),
          radial-gradient(
            circle at 50% 100%,
            rgba(244, 154, 181, 0.14),
            transparent 34%
          ),
          linear-gradient(145deg, #fff8fa 0%, #fff0f5 48%, #ffe9f0 100%);
        font-family:
          Inter,
          ui-sans-serif,
          system-ui,
          -apple-system,
          BlinkMacSystemFont,
          "Segoe UI",
          sans-serif;
      }

      body::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: -5;
        pointer-events: none;
        opacity: 0.22;
        background-image: radial-gradient(
          rgba(190, 83, 118, 0.16) 0.7px,
          transparent 0.7px
        );
        background-size: 24px 24px;
        mask-image: linear-gradient(to bottom, black, transparent 90%);
      }

      /* Floating flowers / petals */
      .petal {
        position: fixed;
        z-index: 1;
        pointer-events: none;
        user-select: none;
        color: rgba(220, 105, 140, 0.28);
        animation: petalFloat linear infinite;
      }

      .petal.p1 {
        left: 4%;
        top: 12%;
        font-size: 24px;
        animation-duration: 9s;
      }
      .petal.p2 {
        left: 13%;
        top: 72%;
        font-size: 17px;
        animation-duration: 12s;
        animation-delay: -3s;
      }
      .petal.p3 {
        right: 7%;
        top: 18%;
        font-size: 20px;
        animation-duration: 11s;
        animation-delay: -6s;
      }
      .petal.p4 {
        right: 16%;
        top: 76%;
        font-size: 28px;
        animation-duration: 14s;
        animation-delay: -5s;
      }
      .petal.p5 {
        left: 48%;
        top: 5%;
        font-size: 14px;
        animation-duration: 8s;
        animation-delay: -2s;
      }

      @keyframes petalFloat {
        0%,
        100% {
          transform: translate3d(0, 0, 0) rotate(0deg);
        }
        35% {
          transform: translate3d(18px, 22px, 0) rotate(12deg);
        }
        70% {
          transform: translate3d(-13px, 44px, 0) rotate(-10deg);
        }
      }

      .ambient-heart {
        animation: heartbeat 2.4s ease-in-out infinite;
        transform-origin: center;
      }

      @keyframes heartbeat {
        0%,
        100% {
          transform: scale(1);
        }
        12% {
          transform: scale(1.08);
        }
        22% {
          transform: scale(1);
        }
        32% {
          transform: scale(1.05);
        }
      }

      .fade-up {
        animation: fadeUp 0.75s cubic-bezier(0.2, 0.75, 0.2, 1) both;
      }

      .delay-1 {
        animation-delay: 0.08s;
      }
      .delay-2 {
        animation-delay: 0.16s;
      }
      .delay-3 {
        animation-delay: 0.24s;
      }
      .delay-4 {
        animation-delay: 0.32s;
      }

      @keyframes fadeUp {
        from {
          opacity: 0;
          transform: translateY(18px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .glass {
        background: rgba(255, 250, 252, 0.74);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border: 1px solid rgba(255, 255, 255, 0.82);
        box-shadow:
          0 18px 60px rgba(206, 93, 128, 0.1),
          inset 0 1px 0 rgba(255, 255, 255, 0.8);
      }

      .soft-card {
        background: rgba(255, 255, 255, 0.66);
        border: 1px solid rgba(225, 144, 168, 0.18);
        box-shadow: 0 10px 35px rgba(206, 93, 128, 0.075);
      }

      .input-soft {
        background: rgba(255, 249, 251, 0.82);
        border: 1px solid rgba(213, 126, 153, 0.22);
        transition:
          border-color 0.2s ease,
          box-shadow 0.2s ease,
          background 0.2s ease,
          transform 0.2s ease;
      }

      .input-soft:focus {
        outline: none;
        background: #fff;
        border-color: rgba(223, 111, 145, 0.55);
        box-shadow: 0 0 0 4px rgba(239, 137, 166, 0.12);
      }

      .search-btn {
        background: linear-gradient(135deg, #ef91ad, #dc6e91);
        box-shadow: 0 12px 28px rgba(220, 110, 145, 0.24);
        transition:
          transform 0.2s ease,
          box-shadow 0.2s ease,
          filter 0.2s ease;
      }

      .search-btn:hover {
        transform: translateY(-2px);
        filter: brightness(1.025);
        box-shadow: 0 16px 32px rgba(220, 110, 145, 0.28);
      }

      .search-btn:active {
        transform: translateY(0);
      }

      .search-btn:disabled {
        cursor: wait;
        transform: none;
        filter: saturate(0.85);
        box-shadow: 0 8px 20px rgba(220, 110, 145, 0.16);
      }

      .search-btn:disabled i {
        animation: gentleSpin 1.4s linear infinite;
      }

      @keyframes gentleSpin {
        from {
          transform: rotate(0deg);
        }

        to {
          transform: rotate(360deg);
        }
      }

      .source-item {
        transition:
          transform 0.22s ease,
          background 0.22s ease,
          border-color 0.22s ease;
      }

      .source-item:hover {
        transform: translateY(-2px);
        background: rgba(255, 247, 250, 0.88);
        border-color: rgba(223, 111, 145, 0.2);
      }

      .source-item.active {
        background: rgba(255, 236, 243, 0.86);
        border-color: rgba(223, 111, 145, 0.25);
      }

      .source-item.done {
        background: rgba(245, 255, 249, 0.7);
        border-color: rgba(123, 190, 151, 0.18);
      }

      .source-item.skipped {
        opacity: 0.65;
        background: rgba(255, 249, 251, 0.5);
      }

      .source-item.error {
        background: rgba(255, 239, 243, 0.82);
        border-color: rgba(220, 105, 140, 0.24);
      }

      .source-item.active .mini-dot {
        animation: sourcePulse 1.2s ease-in-out infinite;
      }

      .source-item.done .mini-dot {
        animation: none;
      }

      @keyframes sourcePulse {
        0%,
        100% {
          opacity: 0.45;
          transform: scale(0.85);
        }

        50% {
          opacity: 1;
          transform: scale(1.25);
        }
      }

      .progress-line {
        position: relative;
        overflow: hidden;
      }

      .progress-line::after {
        content: "";
        position: absolute;
        inset: 0;
        width: 45%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.5),
          transparent
        );
        animation: progressShimmer 1.8s ease-in-out infinite;
      }

      @keyframes progressShimmer {
        from {
          transform: translateX(-130%);
        }

        to {
          transform: translateX(280%);
        }
      }

      .result-item {
        opacity: 0;
        transform: translateY(10px);
        animation: resultIn 0.5s ease forwards;
        transition:
          transform 0.25s ease,
          box-shadow 0.25s ease,
          border-color 0.25s ease;
      }

      .result-item:hover {
        transform: translateY(-2px);
        border-color: rgba(223, 111, 145, 0.22);
        box-shadow: 0 12px 30px rgba(206, 93, 128, 0.08);
      }

      @keyframes resultIn {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .link-btn {
        transition:
          transform 0.2s ease,
          background 0.2s ease;
      }

      .link-btn:hover {
        transform: translateY(-1px);
        background: rgba(239, 145, 173, 0.12);
      }

      .download-btn {
        transition:
          transform 0.2s ease,
          box-shadow 0.2s ease;
      }

      .download-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 24px rgba(220, 110, 145, 0.15);
      }

      .sparkle {
        animation: sparkle 2.8s ease-in-out infinite;
      }

      @keyframes sparkle {
        0%,
        100% {
          opacity: 0.45;
          transform: scale(0.9) rotate(0deg);
        }
        50% {
          opacity: 1;
          transform: scale(1.08) rotate(8deg);
        }
      }

      .cursor-heart {
        position: fixed;
        z-index: 9999;
        pointer-events: none;
        user-select: none;
        color: #e989a7;
        font-size: 13px;
        filter: drop-shadow(
          0 4px 8px rgba(223, 111, 145, 0.18)
        );
        animation: cursorHeart 0.85s cubic-bezier(0.2, 0.75, 0.2, 1) forwards;
      }

      @keyframes cursorHeart {
        from {
          opacity: 0.8;
          transform: translate(-50%, -50%) scale(0.7);
        }
        to {
          opacity: 0;
          transform: translate(-50%, -85px) scale(1.1);
        }
      }

      .swal2-popup {
        border-radius: 24px !important;
        background: #fff8fb !important;
        color: #633747 !important;
      }

      .swal2-title {
        color: #633747 !important;
      }

      .swal2-html-container {
        color: #8b5b6d !important;
      }

      @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
          animation-duration: 0.01ms !important;
          animation-iteration-count: 1 !important;
          scroll-behavior: auto !important;
          transition-duration: 0.01ms !important;
        }
      }
/* ══════════════════════════════════════════════
   NEXKY MOTION SYSTEM
   Soft / romantic / elegant / performance-aware
   ══════════════════════════════════════════════ */

:root {
  --motion-ease: cubic-bezier(0.22, 0.72, 0.2, 1);
  --pink-glow: rgba(232, 121, 154, 0.16);
  --pink-glow-soft: rgba(246, 178, 197, 0.12);
}

body {
  position: relative;
  isolation: isolate;
  background-size: 140% 140%;
  animation: backgroundBreath 18s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -6;
  pointer-events: none;
  opacity: 0.42;
  background:
    radial-gradient(circle at 22% 28%, rgba(255,255,255,.7), transparent 18%),
    radial-gradient(circle at 78% 34%, rgba(247,164,188,.12), transparent 22%),
    radial-gradient(circle at 48% 78%, rgba(255,255,255,.45), transparent 20%);
  filter: blur(30px);
  animation: atmosphereDrift 22s ease-in-out infinite alternate;
}

@keyframes backgroundBreath {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 70% 45%;
  }
  100% {
    background-position: 100% 100%;
  }
}

@keyframes atmosphereDrift {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  50% {
    transform: translate3d(2%, 2%, 0) scale(1.04);
  }
  100% {
    transform: translate3d(-1%, 3%, 0) scale(1.08);
  }
}

/* ──────────────────────────────────────────────
   Ambient scene
   ────────────────────────────────────────────── */

.ambient-scene {
  position: fixed;
  inset: 0;
  z-index: -4;
  overflow: hidden;
  pointer-events: none;
}

.ambient-orb {
  position: absolute;
  display: block;
  border-radius: 999px;
  filter: blur(2px);
  will-change: transform;
}

.orb-one {
  width: 220px;
  height: 220px;
  left: -80px;
  top: 12%;
  background: radial-gradient(circle, rgba(247, 167, 190, .24), transparent 70%);
  animation: orbFloatOne 16s ease-in-out infinite;
}

.orb-two {
  width: 310px;
  height: 310px;
  right: -120px;
  top: 24%;
  background: radial-gradient(circle, rgba(232, 121, 154, .15), transparent 70%);
  animation: orbFloatTwo 20s ease-in-out infinite;
}

.orb-three {
  width: 250px;
  height: 250px;
  left: 35%;
  bottom: -120px;
  background: radial-gradient(circle, rgba(255, 255, 255, .55), transparent 70%);
  animation: orbFloatThree 18s ease-in-out infinite;
}

.orb-four {
  width: 170px;
  height: 170px;
  right: 25%;
  top: 5%;
  background: radial-gradient(circle, rgba(244, 147, 175, .12), transparent 70%);
  animation: orbFloatFour 13s ease-in-out infinite;
}

@keyframes orbFloatOne {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(35px, 55px, 0) scale(1.08); }
}

@keyframes orbFloatTwo {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-50px, 40px, 0) scale(1.12); }
}

@keyframes orbFloatThree {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(30px, -45px, 0) scale(1.1); }
}

@keyframes orbFloatFour {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-25px, 35px, 0) rotate(15deg); }
}

.ambient-ring {
  position: absolute;
  display: block;
  border: 1px solid rgba(223, 111, 145, .10);
  border-radius: 50%;
  animation: ringDrift 18s linear infinite;
}

.ring-one {
  width: 320px;
  height: 320px;
  left: -150px;
  top: 42%;
}

.ring-two {
  width: 440px;
  height: 440px;
  right: -240px;
  bottom: 5%;
  animation-duration: 25s;
  animation-direction: reverse;
}

@keyframes ringDrift {
  from { transform: rotate(0deg) scale(.96); }
  50% { transform: rotate(180deg) scale(1.03); }
  to { transform: rotate(360deg) scale(.96); }
}

.ambient-star {
  position: absolute;
  color: rgba(219, 106, 140, .24);
  filter: drop-shadow(0 6px 14px rgba(223, 111, 145, .10));
  animation: starFloat 4.5s ease-in-out infinite;
}

.star-one {
  left: 20%;
  top: 18%;
  font-size: 12px;
}

.star-two {
  right: 20%;
  top: 52%;
  font-size: 15px;
  animation-delay: -1.5s;
}

.star-three {
  left: 8%;
  bottom: 18%;
  font-size: 10px;
  animation-delay: -3s;
}

@keyframes starFloat {
  0%, 100% {
    opacity: .25;
    transform: translateY(0) scale(.9) rotate(0deg);
  }
  50% {
    opacity: .9;
    transform: translateY(-12px) scale(1.15) rotate(12deg);
  }
}

/* ──────────────────────────────────────────────
   Existing petals get a more natural motion
   ────────────────────────────────────────────── */

.petal {
  filter: drop-shadow(0 8px 16px rgba(223, 111, 145, .08));
  will-change: transform, opacity;
}

.petal.p1 { animation-name: petalFloatOne; }
.petal.p2 { animation-name: petalFloatTwo; }
.petal.p3 { animation-name: petalFloatThree; }
.petal.p4 { animation-name: petalFloatFour; }
.petal.p5 { animation-name: petalFloatFive; }

@keyframes petalFloatOne {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-8deg); opacity: .25; }
  35% { transform: translate3d(24px, 30px, 0) rotate(18deg); opacity: .65; }
  70% { transform: translate3d(-12px, 64px, 0) rotate(-16deg); opacity: .35; }
}

@keyframes petalFloatTwo {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(8deg); opacity: .25; }
  50% { transform: translate3d(35px, -22px, 0) rotate(-20deg); opacity: .7; }
}

@keyframes petalFloatThree {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); opacity: .2; }
  45% { transform: translate3d(-28px, 42px, 0) rotate(22deg); opacity: .7; }
  80% { transform: translate3d(15px, 75px, 0) rotate(-12deg); opacity: .3; }
}

@keyframes petalFloatFour {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-12deg); opacity: .22; }
  50% { transform: translate3d(-38px, -38px, 0) rotate(18deg); opacity: .65; }
}

@keyframes petalFloatFive {
  0%, 100% { transform: translate3d(0, 0, 0) scale(.9); opacity: .2; }
  50% { transform: translate3d(20px, 26px, 0) scale(1.25); opacity: .8; }
}

/* ──────────────────────────────────────────────
   Glass surfaces: subtle breathing + hover lift
   ────────────────────────────────────────────── */

.glass {
  position: relative;
  transition:
    transform .45s var(--motion-ease),
    box-shadow .45s var(--motion-ease),
    border-color .45s ease,
    background .45s ease;
  will-change: transform;
}

.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,.28),
    transparent 28%,
    transparent 72%,
    rgba(255,255,255,.18)
  );
  opacity: .55;
  transform: translateX(-8%);
  transition: transform .8s var(--motion-ease), opacity .6s ease;
}

.glass:hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 70px rgba(206, 93, 128, .13),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.glass:hover::before {
  opacity: .9;
  transform: translateX(8%);
}

/* Hero receives a very slow breathing glow */
.page-shell > section:first-of-type > .glass:first-child {
  animation: heroBreath 7s ease-in-out infinite;
}

@keyframes heroBreath {
  0%, 100% {
    box-shadow:
      0 18px 60px rgba(206,93,128,.10),
      inset 0 1px 0 rgba(255,255,255,.8);
  }
  50% {
    box-shadow:
      0 24px 72px rgba(206,93,128,.14),
      0 0 45px rgba(239,145,173,.07),
      inset 0 1px 0 rgba(255,255,255,.9);
  }
}

/* ──────────────────────────────────────────────
   Typography micro-motion
   ────────────────────────────────────────────── */

h1 span {
  display: inline-block;
  animation: titleGlow 4s ease-in-out infinite;
}

@keyframes titleGlow {
  0%, 100% {
    filter: drop-shadow(0 0 0 rgba(223,111,145,0));
  }
  50% {
    filter: drop-shadow(0 8px 18px rgba(223,111,145,.14));
  }
}

/* ──────────────────────────────────────────────
   Chips
   ────────────────────────────────────────────── */

.group {
  will-change: transform;
}

.group:hover {
  box-shadow:
    0 12px 26px rgba(223,111,145,.13),
    inset 0 1px 0 rgba(255,255,255,.85);
}

/* ──────────────────────────────────────────────
   Inputs: elegant focus glow
   ────────────────────────────────────────────── */

.input-soft:hover {
  transform: translateY(-1px);
  border-color: rgba(223,111,145,.32);
}

.input-soft:focus {
  transform: translateY(-1px) scale(1.005);
  box-shadow:
    0 0 0 4px rgba(239,137,166,.11),
    0 12px 28px rgba(206,93,128,.08);
}

/* ──────────────────────────────────────────────
   Search button: soft pulse + shine
   ────────────────────────────────────────────── */

.search-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.search-btn::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: -1;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255,255,255,.42) 50%,
    transparent 65%
  );
  transform: translateX(-120%);
  animation: buttonShine 3.8s ease-in-out infinite;
}

.search-btn::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  right: 14%;
  top: 50%;
  border-radius: 50%;
  background: rgba(255,255,255,.20);
  filter: blur(2px);
  transform: translateY(-50%);
  animation: buttonPulse 2.2s ease-in-out infinite;
}

@keyframes buttonShine {
  0%, 55%, 100% { transform: translateX(-120%); }
  75% { transform: translateX(120%); }
}

@keyframes buttonPulse {
  0%, 100% { opacity: .2; transform: translateY(-50%) scale(.8); }
  50% { opacity: .65; transform: translateY(-50%) scale(1.5); }
}

/* ──────────────────────────────────────────────
   Progress: make the journey feel alive
   ────────────────────────────────────────────── */

.progress-line {
  transition: width .75s var(--motion-ease);
}

#progressSection .rounded-2xl {
  transition:
    transform .35s var(--motion-ease),
    box-shadow .35s ease,
    background .35s ease;
}

#progressSection .rounded-2xl:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(206,93,128,.08);
}

/* ──────────────────────────────────────────────
   Result cards
   ────────────────────────────────────────────── */

.result-item {
  position: relative;
  overflow: hidden;
}

.result-item::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255,255,255,.48) 48%,
    transparent 62%
  );
  transform: translateX(-130%);
  transition: transform .9s var(--motion-ease);
}

.result-item:hover::before {
  transform: translateX(130%);
}

.result-item:hover {
  box-shadow:
    0 16px 34px rgba(206,93,128,.09),
    inset 0 1px 0 rgba(255,255,255,.85);
}

/* ──────────────────────────────────────────────
   Dynamic floating hearts / sparkles
   ────────────────────────────────────────────── */

.floating-love {
  position: fixed;
  z-index: 2;
  pointer-events: none;
  color: rgba(223,111,145,.42);
  font-size: 12px;
  animation: floatingLove 7s cubic-bezier(.22,.72,.2,1) forwards;
  filter: drop-shadow(0 6px 12px rgba(223,111,145,.10));
}

@keyframes floatingLove {
  0% {
    opacity: 0;
    transform: translate3d(0, 15px, 0) scale(.6) rotate(-8deg);
  }
  12% {
    opacity: .7;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--drift-x), -105vh, 0)
      scale(var(--scale))
      rotate(var(--rotate));
  }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(24px) scale(.985);
  transition:
    opacity .8s var(--motion-ease),
    transform .8s var(--motion-ease);
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ──────────────────────────────────────────────
   Touch / mobile
   ────────────────────────────────────────────── */

@media (hover: none) {
  .glass:hover {
    transform: none;
  }

  .input-soft:hover {
    transform: none;
  }

  .result-item:hover {
    transform: none;
  }

  .source-item:hover {
    transform: none;
  }
}

@media (max-width: 640px) {
  .ambient-ring {
    opacity: .55;
  }

  .orb-two {
    right: -180px;
  }

  .orb-three {
    left: 10%;
  }

  .ambient-star {
    opacity: .7;
  }

  .glass:hover {
    transform: translateY(-1px);
  }
}

@media (prefers-reduced-motion: reduce) {
  body,
  body::after,
  .ambient-orb,
  .ambient-ring,
  .ambient-star,
  .petal,
  .glass,
  .page-shell > section:first-of-type > .glass:first-child,
  h1 span,
  .search-btn::before,
  .search-btn::after,
  .floating-love {
    animation: none !important;
  }

  .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* ══════════════════════════════════════════════
   PRIVATE LOCKSCREEN
   Soft / romantic / elegant
   ══════════════════════════════════════════════ */

.lock-screen {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 24px;
  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(255, 255, 255, 0.72),
      transparent 28%
    ),
    radial-gradient(
      circle at 82% 25%,
      rgba(241, 143, 173, 0.20),
      transparent 32%
    ),
    radial-gradient(
      circle at 50% 90%,
      rgba(255, 255, 255, 0.62),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      #fff7fa 0%,
      #ffedf3 48%,
      #ffe6ee 100%
    );
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition:
    opacity 0.7s cubic-bezier(.22,.72,.2,1),
    visibility 0.7s,
    transform 0.9s cubic-bezier(.22,.72,.2,1);
}

.lock-screen.is-unlocking {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.035);
  pointer-events: none;
}

.lock-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    radial-gradient(
      rgba(190, 83, 118, 0.13) 0.7px,
      transparent 0.7px
    );
  background-size: 24px 24px;
}

.lock-screen::after {
  content: "";
  position: absolute;
  inset: -30%;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 30% 35%,
      rgba(255,255,255,.50),
      transparent 18%
    ),
    radial-gradient(
      circle at 70% 65%,
      rgba(239,145,173,.10),
      transparent 22%
    );
  filter: blur(40px);
  animation: lockAtmosphere 16s ease-in-out infinite alternate;
}

@keyframes lockAtmosphere {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }

  50% {
    transform: translate3d(2%, 2%, 0) scale(1.04);
  }

  100% {
    transform: translate3d(-1%, 3%, 0) scale(1.08);
  }
}


/* ──────────────────────────────────────────────
   Lock glows
   ────────────────────────────────────────────── */

.lock-glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(8px);
}

.lock-glow-one {
  width: 280px;
  height: 280px;
  left: -110px;
  top: 12%;
  background:
    radial-gradient(
      circle,
      rgba(242, 139, 168, .20),
      transparent 70%
    );
  animation: lockGlowOne 12s ease-in-out infinite;
}

.lock-glow-two {
  width: 360px;
  height: 360px;
  right: -150px;
  bottom: 5%;
  background:
    radial-gradient(
      circle,
      rgba(223, 111, 145, .13),
      transparent 70%
    );
  animation: lockGlowTwo 15s ease-in-out infinite;
}

@keyframes lockGlowOne {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(45px, 35px, 0) scale(1.12);
  }
}

@keyframes lockGlowTwo {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-40px, -35px, 0) scale(1.1);
  }
}


/* ──────────────────────────────────────────────
   Floating decorations
   ────────────────────────────────────────────── */

.lock-particle {
  position: absolute;
  pointer-events: none;
  color: rgba(223, 111, 145, .28);
  filter: drop-shadow(
    0 8px 16px rgba(223,111,145,.10)
  );
  animation: lockParticleFloat 6s ease-in-out infinite;
}

.lock-particle-one {
  left: 17%;
  top: 18%;
  font-size: 14px;
}

.lock-particle-two {
  right: 18%;
  top: 28%;
  font-size: 17px;
  animation-delay: -2s;
}

.lock-particle-three {
  left: 24%;
  bottom: 18%;
  font-size: 11px;
  animation-delay: -4s;
}

@keyframes lockParticleFloat {
  0%, 100% {
    opacity: .25;
    transform:
      translate3d(0, 0, 0)
      rotate(0deg)
      scale(.9);
  }

  50% {
    opacity: .85;
    transform:
      translate3d(10px, -18px, 0)
      rotate(12deg)
      scale(1.15);
  }
}


/* ──────────────────────────────────────────────
   Lock card
   ────────────────────────────────────────────── */

.lock-card {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  padding: 38px 30px 28px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 32px;
  background: rgba(255, 250, 252, .76);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 30px 90px rgba(206,93,128,.15),
    inset 0 1px 0 rgba(255,255,255,.95);
  animation: lockCardIn .9s cubic-bezier(.22,.72,.2,1) both;
}

@keyframes lockCardIn {
  from {
    opacity: 0;
    transform:
      translateY(24px)
      scale(.96);
  }

  to {
    opacity: 1;
    transform:
      translateY(0)
      scale(1);
  }
}


/* ──────────────────────────────────────────────
   Lock brand
   ────────────────────────────────────────────── */

.lock-brand {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 235px);
  margin: 0 auto 16px;
  animation: lockBrandIn 1s cubic-bezier(.22,.72,.2,1) both;
}

.lock-brand::before {
  content: "";
  position: absolute;
  width: 72%;
  height: 55%;
  left: 14%;
  top: 25%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(238, 135, 166, .14);
  filter: blur(28px);
  animation: lockBrandGlow 5s ease-in-out infinite;
}

.lock-brand-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 14px 28px rgba(223,111,145,.15))
    drop-shadow(0 0 18px rgba(238,135,166,.08));
  animation: lockBrandFloat 5s ease-in-out infinite;
  transform-origin: center;
}

@keyframes lockBrandIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(.94);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes lockBrandFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-4px) scale(1.012);
  }
}

@keyframes lockBrandGlow {
  0%,
  100% {
    opacity: .45;
    transform: scale(.92);
  }

  50% {
    opacity: .85;
    transform: scale(1.08);
  }
}


/* ──────────────────────────────────────────────
   Lock typography
   ────────────────────────────────────────────── */

.lock-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-bottom: 9px;
  color: #c36b86;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.lock-eyebrow i {
  animation: sparkle 2.8s ease-in-out infinite;
}

.lock-title {
  margin: 0;
  color: #633747;
  font-size: clamp(29px, 7vw, 40px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -.045em;
}

.lock-title span {
  display: inline-block;
  color: #df6f91;
  animation: titleGlow 4s ease-in-out infinite;
}

.lock-description {
  max-width: 310px;
  margin: 14px auto 25px;
  color: #946779;
  font-size: 13px;
  line-height: 1.8;
}


/* ──────────────────────────────────────────────
   Lock form
   ────────────────────────────────────────────── */

.lock-form {
  width: 100%;
}

.lock-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.lock-input-wrap > i {
  position: absolute;
  left: 15px;
  z-index: 2;
  color: #c08b9b;
  font-size: 12px;
  pointer-events: none;
}

.lock-input-wrap input {
  width: 100%;
  height: 52px;
  padding: 0 46px 0 40px;
  color: #633747;
  font: inherit;
  font-size: 13px;
  border: 1px solid rgba(213,126,153,.22);
  border-radius: 15px;
  outline: none;
  background: rgba(255,249,251,.86);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
  transition:
    border-color .25s ease,
    box-shadow .25s ease,
    background .25s ease,
    transform .25s ease;
}

.lock-input-wrap input::placeholder {
  color: #c6a0ad;
}

.lock-input-wrap input:hover {
  border-color: rgba(223,111,145,.32);
}

.lock-input-wrap input:focus {
  background: #fff;
  border-color: rgba(223,111,145,.55);
  transform: translateY(-1px);
  box-shadow:
    0 0 0 4px rgba(239,137,166,.11),
    0 12px 28px rgba(206,93,128,.08);
}

.lock-password-toggle {
  position: absolute;
  right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 11px;
  color: #b27689;
  background: transparent;
  cursor: pointer;
  transition:
    color .2s ease,
    background .2s ease,
    transform .2s ease;
}

.lock-password-toggle:hover {
  color: #df6f91;
  background: #fff0f5;
  transform: scale(1.05);
}


/* ──────────────────────────────────────────────
   Unlock button
   ────────────────────────────────────────────── */

.lock-button {
  position: relative;
  width: 100%;
  height: 52px;
  margin-top: 11px;
  overflow: hidden;
  isolation: isolate;
  border: 0;
  border-radius: 15px;
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  background:
    linear-gradient(
      135deg,
      #ef91ad,
      #dc6e91
    );
  box-shadow:
    0 13px 30px rgba(220,110,145,.24);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    filter .25s ease;
}

.lock-button::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: -1;
  background:
    linear-gradient(
      105deg,
      transparent 35%,
      rgba(255,255,255,.42) 50%,
      transparent 65%
    );
  transform: translateX(-120%);
  animation: buttonShine 3.8s ease-in-out infinite;
}

.lock-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.025);
  box-shadow:
    0 17px 36px rgba(220,110,145,.28);
}

.lock-button:active {
  transform: translateY(0);
}

.lock-button:disabled {
  cursor: wait;
  opacity: .78;
  transform: none;
}

.lock-button-content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.lock-button-content i {
  transition: transform .3s ease;
}

.lock-button:hover .lock-button-content i {
  transform: scale(1.15);
}


/* ──────────────────────────────────────────────
   Lock message
   ────────────────────────────────────────────── */

.lock-message {
  min-height: 20px;
  margin-top: 10px;
  color: #b76a82;
  font-size: 11px;
  line-height: 1.5;
}

.lock-message.error {
  animation: lockShake .42s ease;
}

@keyframes lockShake {
  0%, 100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-5px);
  }

  50% {
    transform: translateX(5px);
  }

  75% {
    transform: translateX(-3px);
  }
}


/* ──────────────────────────────────────────────
   Lock footer
   ────────────────────────────────────────────── */

.lock-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 21px;
  color: #bd8b9b;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.lock-footer i {
  color: #df6f91;
}


/* ──────────────────────────────────────────────
   Mobile
   ────────────────────────────────────────────── */

@media (max-width: 640px) {
  .lock-screen {
    padding: 18px;
  }

  .lock-card {
    padding: 28px 18px 24px;
    border-radius: 28px;
  }

  .lock-brand {
    width: min(100%, 210px);
    margin-bottom: 14px;
  }

  .lock-brand-image {
    filter:
      drop-shadow(0 10px 22px rgba(223,111,145,.14))
      drop-shadow(0 0 14px rgba(238,135,166,.07));
  }

  .lock-description {
    margin-bottom: 22px;
    font-size: 12px;
  }

  .lock-input-wrap input,
  .lock-button {
    height: 50px;
  }

  .lock-particle-one {
    left: 8%;
  }

  .lock-particle-two {
    right: 8%;
  }

  .lock-particle-three {
    left: 12%;
  }
}


/* ──────────────────────────────────────────────
   Reduced motion
   ────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  .lock-screen,
  .lock-screen::after,
  .lock-glow,
  .lock-particle,
  .lock-card,
  .lock-brand,
  .lock-brand-image,
  .lock-button::before,
  .lock-title span {
    animation: none !important;
    transition: none !important;
  }
}

/* ══════════════════════════════════════════════
   HERO PERSONAL SIGNATURE
   NEXKY × ELLRAINN
   ══════════════════════════════════════════════ */

.hero-signature-bg {
  position: absolute;
  z-index: 0;

  inset: 0;

  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  pointer-events: none;

  animation:
    heroSignatureIn 1.2s cubic-bezier(.22,.72,.2,1) both;
}

.hero-signature-glow {
  position: absolute;

  width: 390px;
  height: 300px;

  left: 50%;
  top: 50%;

  border-radius: 999px;

  background:
    radial-gradient(
      circle,
      rgba(242, 139, 168, .20) 0%,
      rgba(242, 139, 168, .08) 40%,
      transparent 72%
    );

  filter: blur(35px);

  transform: translate(-50%, -50%);

  animation:
    heroSignatureGlow 5s ease-in-out infinite;
}

.hero-signature-image {
  position: relative;
  z-index: 1;

  display: block;

  width: 430px;
  max-width: 75%;
  height: auto;

  object-fit: contain;

  opacity: .14;

  filter:
    blur(.15px)
    drop-shadow(
      0 12px 28px rgba(223, 111, 145, .10)
    );

  animation:
    heroSignatureFloat 7s ease-in-out infinite;

  transform-origin: center;
}

/* Content stays clearly above artwork */

.hero-content {
  position: relative;
  z-index: 10;
}

/* No readability layer —
   logo remains visible behind the content */

.hero-content::before {
  display: none;
}

.hero-signature-caption {
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;
  gap: 6px;

  margin-top: 2px;
  padding-left: 2px;

  color: #b18493;

  font-size: 9px;
  font-weight: 600;
  letter-spacing: .02em;
}

.hero-signature-caption i {
  color: #df6f91;
  font-size: 8px;

  animation:
    signatureHeart 2.8s ease-in-out infinite;
}

@keyframes heroSignatureIn {
  from {
    opacity: 0;
    transform: scale(.94);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroSignatureFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-4px) scale(1.008);
  }
}

@keyframes heroSignatureGlow {
  0%,
  100% {
    opacity: .45;
    transform:
      translate(-50%, -50%)
      scale(.92);
  }

  50% {
    opacity: .8;
    transform:
      translate(-50%, -50%)
      scale(1.08);
  }
}

@keyframes signatureHeart {
  0%,
  100% {
    transform: scale(1);
  }

  12% {
    transform: scale(1.18);
  }

  22% {
    transform: scale(1);
  }
}


/* ──────────────────────────────────────────────
   Mobile
   ────────────────────────────────────────────── */

@media (max-width: 640px) {
  .hero-signature-bg {
    inset: 0;

    width: 100%;
    height: 100%;
  }

  .hero-signature-image {
    width: 330px;
    max-width: 82%;
    opacity: .11;
  }

  .hero-signature-glow {
    width: 280px;
    height: 210px;
  }

  .hero-signature-caption {
    font-size: 8px;
  }
}