 :root {
   --bg: #07070a;
   --bg2: #0b0b12;
   --panel: rgba(255, 255, 255, 0.06);
   --panel2: rgba(255, 255, 255, 0.09);
   --border: rgba(255, 255, 255, 0.12);
   --text: rgba(255, 255, 255, 0.92);
   --muted: rgba(255, 255, 255, 0.72);
   --subtle: rgba(255, 255, 255, 0.55);
   --accent: #ff2d55;
   --accent2: #ffb020;
   --accent3: #6dfcff;
   --radius: 18px;
   --shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
 }
 
 * {
   box-sizing: border-box;
 }
 
 html,
 body {
   height: 100%;
 }
 
 body {
   margin: 0;
   font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
   color: var(--text);
   background: radial-gradient(1200px 700px at 10% 10%, rgba(255, 45, 85, 0.14), transparent 55%),
     radial-gradient(900px 650px at 90% 20%, rgba(109, 252, 255, 0.10), transparent 55%),
     radial-gradient(900px 750px at 50% 100%, rgba(255, 176, 32, 0.10), transparent 55%),
     linear-gradient(180deg, var(--bg), var(--bg2));
   overflow-x: hidden;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 b,
 strong {
   font-weight: 800;
 }
 
 code {
   font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
   font-size: 0.95em;
   color: rgba(255, 255, 255, 0.88);
 }
 
 .container {
   width: min(1180px, calc(100% - 40px));
   margin-inline: auto;
 }
 
 .noise {
   position: fixed;
   inset: 0;
   pointer-events: none;
   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
   mix-blend-mode: overlay;
   opacity: 0.22;
 }
 
 header {
   position: sticky;
   top: 0;
   z-index: 50;
   backdrop-filter: blur(14px);
   -webkit-backdrop-filter: blur(14px);
   background: rgba(7, 7, 10, 0.55);
   border-bottom: 1px solid rgba(255, 255, 255, 0.07);
 }
 
 .topbar {
   padding: 10px 0;
   font-size: 13px;
   color: var(--subtle);
 }
 
 .row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 .pill {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 8px 12px;
   border-radius: 999px;
   background: rgba(255, 255, 255, 0.05);
   border: 1px solid rgba(255, 255, 255, 0.08);
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   padding: 14px 0;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 12px;
   min-width: 210px;
 }
 
 .logo {
   width: 40px;
   height: 40px;
   border-radius: 14px;
   background: radial-gradient(circle at 30% 30%, rgba(255, 45, 85, 0.95), rgba(255, 176, 32, 0.80));
   box-shadow: 0 16px 50px rgba(255, 45, 85, 0.20);
 }
 
 .brand h1 {
   margin: 0;
   font-size: 15px;
   line-height: 1.1;
   letter-spacing: 0.2px;
 }
 
 .brand span {
   display: block;
   margin-top: 2px;
   font-size: 12px;
   color: var(--subtle);
 }
 
 nav {
   display: flex;
   align-items: center;
   gap: 6px;
 }
 
 nav a {
   font-size: 14px;
   color: var(--muted);
   padding: 10px 12px;
   border-radius: 999px;
   transition: transform 160ms ease, background 160ms ease, color 160ms ease;
 }
 
 nav a:hover {
   transform: translateY(-1px);
   background: rgba(255, 255, 255, 0.06);
   color: var(--text);
 }
 
 nav a.active {
   background: rgba(255, 45, 85, 0.16);
   border: 1px solid rgba(255, 45, 85, 0.25);
   color: rgba(255, 255, 255, 0.96);
 }
 
 .actions {
   display: flex;
   align-items: center;
   gap: 10px;
 }
 
 .btn {
   border: 0;
   cursor: pointer;
   padding: 12px 16px;
   border-radius: 14px;
   font-weight: 800;
   letter-spacing: 0.2px;
   color: var(--text);
   background: rgba(255, 255, 255, 0.06);
   border: 1px solid rgba(255, 255, 255, 0.10);
   transition: transform 160ms ease, background 160ms ease;
   position: relative;
   overflow: hidden;
   user-select: none;
 }
 
 .btn:hover {
   transform: translateY(-1px);
   background: rgba(255, 255, 255, 0.10);
 }
 
 .btn.primary {
   background: linear-gradient(135deg, rgba(255, 45, 85, 0.98), rgba(255, 176, 32, 0.88));
   border-color: rgba(255, 45, 85, 0.35);
   box-shadow: 0 18px 55px rgba(255, 45, 85, 0.14);
 }
 
 .btn.small {
   padding: 10px 12px;
   border-radius: 12px;
   font-size: 14px;
 }
 
 .btn:active {
   transform: translateY(0);
 }
 
 .btn .ripple {
   position: absolute;
   border-radius: 999px;
   background: rgba(255, 255, 255, 0.30);
   transform: translate(-50%, -50%);
   pointer-events: none;
   animation: ripple 650ms ease-out forwards;
 }
 
 @keyframes ripple {
   from {
     width: 0;
     height: 0;
     opacity: 0.9;
   }
 
   to {
     width: 260px;
     height: 260px;
     opacity: 0;
   }
 }
 
 .menu-btn {
   display: none;
   width: 44px;
   height: 44px;
   border-radius: 14px;
   background: rgba(255, 255, 255, 0.05);
   border: 1px solid rgba(255, 255, 255, 0.10);
   color: var(--text);
   cursor: pointer;
 }
 
 main {
   position: relative;
   z-index: 1;
 }
 
 section {
   padding: 44px 0;
 }
 
 .hero {
   padding: 56px 0 28px;
 }
 
 .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-left {
  display: grid;
  gap: 20px;
}

.hero-right {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.hero-image {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

 .headline {
   font-family: "Playfair Display", serif;
   font-size: clamp(34px, 4vw, 52px);
   line-height: 1.08;
   margin: 0;
 }
 
 .headline .accent {
   background: linear-gradient(135deg, var(--accent), var(--accent2));
   color: transparent;
   -webkit-background-clip: text;
   background-clip: text;
 }
 
 .subhead {
   margin: 14px 0 0;
   max-width: 62ch;
   color: var(--muted);
   font-size: 16px;
   line-height: 1.6;
 }
 
 .hero-actions {
   margin-top: 18px;
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .badges {
   margin-top: 14px;
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .badge {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 10px 12px;
   border-radius: 14px;
   background: rgba(255, 255, 255, 0.05);
   border: 1px solid rgba(255, 255, 255, 0.08);
   color: var(--muted);
   font-size: 13px;
 }
 
 .visual {
   position: relative;
   border-radius: 28px;
   min-height: 420px;
   background: rgba(255, 255, 255, 0.04);
   border: 1px solid rgba(255, 255, 255, 0.10);
   box-shadow: var(--shadow);
   overflow: hidden;
 }
 
 .blob {
   position: absolute;
   width: 340px;
   height: 340px;
   border-radius: 999px;
   filter: blur(18px);
   opacity: 0.70;
   transform: translate3d(0, 0, 0);
   animation: drift 7s ease-in-out infinite;
 }
 
 .blob.b1 {
   left: -80px;
   top: -80px;
   background: radial-gradient(circle at 30% 30%, rgba(255, 45, 85, 0.55), transparent 62%);
 }
 
 .blob.b2 {
   right: -120px;
   bottom: -90px;
   background: radial-gradient(circle at 30% 30%, rgba(109, 252, 255, 0.40), transparent 62%);
   animation-delay: -1.2s;
 }
 
 .blob.b3 {
   left: 40px;
   bottom: -140px;
   background: radial-gradient(circle at 30% 30%, rgba(255, 176, 32, 0.38), transparent 62%);
   animation-delay: -2.2s;
 }
 
 @keyframes drift {
   0% {
     transform: translate3d(0, 0, 0) scale(1);
   }
 
   50% {
     transform: translate3d(8px, -10px, 0) scale(1.02);
   }
 
   100% {
     transform: translate3d(0, 0, 0) scale(1);
   }
 }
 
 .hero-card {
   position: absolute;
   left: 18px;
   right: 18px;
   bottom: 18px;
   padding: 16px;
   border-radius: 22px;
   background: rgba(7, 7, 10, 0.55);
   border: 1px solid rgba(255, 255, 255, 0.10);
   backdrop-filter: blur(12px);
   -webkit-backdrop-filter: blur(12px);
 }
 
 .hero-card strong {
   display: block;
   font-size: 15px;
   letter-spacing: 0.2px;
 }
 
 .hero-card p {
   margin: 10px 0 0;
   font-size: 13px;
   line-height: 1.5;
   color: var(--muted);
 }
 
 .section-head {
   display: flex;
   align-items: flex-end;
   justify-content: space-between;
   gap: 16px;
   margin-bottom: 16px;
 }
 
 .section-head h2 {
   margin: 0;
   font-size: 22px;
 }
 
 .section-head p {
   margin: 0;
   max-width: 72ch;
   color: var(--muted);
   font-size: 14px;
   line-height: 1.6;
 }
 
 .grid {
   display: grid;
   gap: 14px;
 }
 
 .grid.cols-3 {
   grid-template-columns: repeat(3, minmax(0, 1fr));
 }
 
 .card {
   border-radius: var(--radius);
   background: rgba(255, 255, 255, 0.04);
   border: 1px solid rgba(255, 255, 255, 0.10);
   overflow: hidden;
   box-shadow: 0 18px 58px rgba(0, 0, 0, 0.30);
   transition: transform 180ms ease, border-color 180ms ease;
 }
 
 .card:hover {
   transform: translateY(-2px);
   border-color: rgba(255, 45, 85, 0.22);
 }
 
 .cat {
   padding: 18px;
   min-height: 132px;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   cursor: pointer;
 }
 
 .cat h3 {
   margin: 0;
   font-size: 16px;
 }
 
 .cat p {
   margin: 8px 0 0;
   font-size: 13px;
   line-height: 1.5;
   color: var(--muted);
 }
 
 .tag {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 8px 10px;
   border-radius: 999px;
   background: rgba(255, 255, 255, 0.06);
   border: 1px solid rgba(255, 255, 255, 0.10);
   font-size: 12px;
   color: rgba(255, 255, 255, 0.84);
 }
 
 .filters {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 10px;
   flex-wrap: wrap;
   padding: 12px;
   border-radius: 18px;
   background: rgba(255, 255, 255, 0.05);
   border: 1px solid rgba(255, 255, 255, 0.10);
   margin-bottom: 14px;
 }
 
 .filter-row {
   display: flex;
   gap: 8px;
   flex-wrap: wrap;
 }
 
 .filter {
   padding: 10px 12px;
   border-radius: 999px;
   font-weight: 800;
   font-size: 12px;
   background: rgba(255, 255, 255, 0.05);
   border: 1px solid rgba(255, 255, 255, 0.10);
   color: rgba(255, 255, 255, 0.85);
   cursor: pointer;
   transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
 }
 
 .filter:hover {
   transform: translateY(-1px);
   background: rgba(255, 255, 255, 0.09);
 }
 
 .filter.active {
   background: rgba(255, 45, 85, 0.16);
   border-color: rgba(255, 45, 85, 0.28);
 }
 
 .search {
   display: flex;
   align-items: center;
   gap: 10px;
   padding: 10px 12px;
   border-radius: 14px;
   background: rgba(0, 0, 0, 0.18);
   border: 1px solid rgba(255, 255, 255, 0.10);
   min-width: min(320px, 100%);
 }
 
 .search input {
   width: 100%;
   border: 0;
   outline: none;
   background: transparent;
   color: var(--text);
   font-size: 14px;
 }
 
 .products {
   display: grid;
   grid-template-columns: repeat(4, minmax(0, 1fr));
   gap: 14px;
 }
 
 .product {
   padding: 14px;
   cursor: pointer;
   min-height: 204px;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   position: relative;
 }
 
 .product:focus-visible {
   outline: 2px solid rgba(109, 252, 255, 0.55);
   outline-offset: 3px;
 }
 
 .product .img {
   height: 112px;
   border-radius: 16px;
   border: 1px solid rgba(255, 255, 255, 0.10);
   background:
     radial-gradient(circle at 30% 30%, rgba(255, 45, 85, 0.35), transparent 60%),
     radial-gradient(circle at 70% 70%, rgba(109, 252, 255, 0.20), transparent 60%),
     rgba(255, 255, 255, 0.04);
   overflow: hidden;
   position: relative;
 }
 
 .product .img::after {
   content: "";
   position: absolute;
   inset: -40% -60%;
   background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.14), transparent);
   transform: rotate(12deg);
   animation: sheen 3.8s ease-in-out infinite;
   opacity: 0.65;
 }
 
 @keyframes sheen {
   0% {
     transform: translateX(-30%) rotate(12deg);
   }
 
   50% {
     transform: translateX(10%) rotate(12deg);
   }
 
   100% {
     transform: translateX(-30%) rotate(12deg);
   }
 }
 
 .product h4 {
   margin: 12px 0 0;
   font-size: 14px;
 }
 
 .product .meta {
   margin-top: 6px;
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
   align-items: center;
   font-size: 12px;
   color: var(--muted);
 }
 
 .hint {
   font-size: 12px;
   color: var(--subtle);
 }
 
 .two-col {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 14px;
 }
 
 .panel {
   border-radius: 22px;
   background: rgba(255, 255, 255, 0.04);
   border: 1px solid rgba(255, 255, 255, 0.10);
   padding: 18px;
   box-shadow: 0 18px 58px rgba(0, 0, 0, 0.30);
 }
 
 .panel h3 {
   margin: 0;
   font-size: 16px;
 }
 
 .panel p {
   margin: 10px 0 0;
   color: var(--muted);
   line-height: 1.65;
   font-size: 14px;
 }
 
 .stats {
   margin-top: 14px;
   display: grid;
   grid-template-columns: repeat(3, minmax(0, 1fr));
   gap: 14px;
 }
 
 .stat {
   border-radius: 18px;
   padding: 14px;
   background: rgba(255, 255, 255, 0.04);
   border: 1px solid rgba(255, 255, 255, 0.10);
 }
 
 .stat b {
   display: block;
   font-size: 22px;
 }
 
 .stat span {
   display: block;
   margin-top: 6px;
   font-size: 12px;
   color: var(--muted);
 }
 
 .slider {
   display: grid;
   gap: 12px;
 }
 
 .quote {
   padding: 18px;
   border-radius: 22px;
   background: rgba(255, 255, 255, 0.04);
   border: 1px solid rgba(255, 255, 255, 0.10);
   min-height: 138px;
 }
 
 .quote p {
   margin: 0;
   line-height: 1.6;
   color: var(--muted);
 }
 
 .quote b {
   display: block;
   margin-top: 12px;
 }
 
 .dots {
   display: flex;
   gap: 8px;
 }
 
 .dot {
   width: 8px;
   height: 8px;
   border-radius: 999px;
   border: 1px solid rgba(255, 255, 255, 0.18);
   background: rgba(255, 255, 255, 0.06);
   cursor: pointer;
 }
 
 .dot.active {
   background: rgba(255, 45, 85, 0.55);
   border-color: rgba(255, 45, 85, 0.60);
 }
 
 .faq {
   display: grid;
   gap: 10px;
 }
 
 .faq button {
   width: 100%;
   text-align: left;
   border: 1px solid rgba(255, 255, 255, 0.10);
   background: rgba(255, 255, 255, 0.04);
   color: var(--text);
   padding: 14px 16px;
   border-radius: 18px;
   cursor: pointer;
   font-weight: 800;
   display: flex;
   justify-content: space-between;
   gap: 12px;
   align-items: center;
 }
 
 .faq .a {
   display: none;
   padding: 12px 16px 2px;
   color: var(--muted);
   line-height: 1.65;
 }
 
 .faq .item.open .a {
   display: block;
 }
 
 footer {
   padding: 26px 0 50px;
   color: var(--subtle);
   border-top: 1px solid rgba(255, 255, 255, 0.06);
 }
 
 .footer-grid {
   display: grid;
   grid-template-columns: 1.3fr 0.7fr;
   gap: 14px;
   align-items: start;
 }
 
 .welcome.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  backdrop-filter: blur(12px);
  transition: opacity 0.6s, transform 0.6s, backdrop-filter 0.6s;
  animation: netflixBlast 0.88s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes netflixBlast {
  0% {
    opacity: 0;
    transform: scale(0.6) translateZ(0);
    backdrop-filter: blur(24px);
  }
  50% {
    opacity: 1;
    transform: scale(1.04) translateZ(0);
    backdrop-filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateZ(0);
    backdrop-filter: blur(12px);
  }
}

.welcome-actions .btn.primary {
  position: relative;
  overflow: hidden;
}

.welcome-actions .btn.primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255,45,85,0.32) 0%, rgba(255,45,85,0) 70%);
  transform: translate(-50%, -50%) scale(0);
  animation: enterPulse 2s ease-in-out infinite;
}

@keyframes enterPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
  50% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

 .reveal.show {
   opacity: 1;
   transform: translateY(0);
 }
 
 .modal {
   position: fixed;
   inset: 0;
   display: none;
   align-items: center;
   justify-content: center;
   padding: 18px;
   background: rgba(0, 0, 0, 0.62);
   z-index: 80;
 }
 
 .modal.open {
   display: flex;
 }
 
 .modal .box {
   width: min(720px, 100%);
   border-radius: 22px;
   background: rgba(10, 10, 16, 0.92);
   border: 1px solid rgba(255, 255, 255, 0.12);
   box-shadow: var(--shadow);
   overflow: hidden;
 }
 
 .modal .box .head {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 10px;
   padding: 14px;
   border-bottom: 1px solid rgba(255, 255, 255, 0.08);
 }
 
 .modal .content {
   padding: 16px;
   display: grid;
   gap: 12px;
 }
 
 .x {
   width: 42px;
   height: 42px;
   border-radius: 14px;
   border: 1px solid rgba(255, 255, 255, 0.10);
   background: rgba(255, 255, 255, 0.05);
   color: var(--text);
   cursor: pointer;
 }
 
 .toast {
   position: fixed;
   right: 18px;
   bottom: 18px;
   display: grid;
   gap: 10px;
   z-index: 90;
 }
 
 .toast .t {
   padding: 12px 14px;
   border-radius: 16px;
   background: rgba(12, 12, 18, 0.92);
   border: 1px solid rgba(255, 255, 255, 0.10);
   color: rgba(255, 255, 255, 0.90);
   box-shadow: 0 14px 40px rgba(0, 0, 0, 0.50);
   font-size: 13px;
 }
 
 .backtop {
   position: fixed;
   right: 18px;
   bottom: 88px;
   width: 48px;
   height: 48px;
   border-radius: 16px;
   border: 1px solid rgba(255, 255, 255, 0.10);
   background: rgba(255, 255, 255, 0.06);
   color: var(--text);
   cursor: pointer;
   display: none;
   z-index: 90;
 }
 
 .backtop.show {
   display: grid;
   place-items: center;
 }
 
 .chat {
   position: fixed;
   left: 18px;
   bottom: 18px;
   z-index: 95;
   width: min(340px, calc(100% - 36px));
 }
 
 .chat .bubble {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 10px;
   padding: 12px 14px;
   border-radius: 18px;
   background: rgba(10, 10, 16, 0.92);
   border: 1px solid rgba(255, 255, 255, 0.12);
   box-shadow: var(--shadow);
   cursor: pointer;
 }
 
 .chatbox {
   margin-top: 10px;
   border-radius: 18px;
   background: rgba(10, 10, 16, 0.92);
   border: 1px solid rgba(255, 255, 255, 0.12);
   overflow: hidden;
   display: none;
 }
 
 .chat.open .chatbox {
   display: block;
 }
 
 .chatbox .msgs {
   padding: 12px;
   max-height: 260px;
   overflow: auto;
   display: grid;
   gap: 10px;
 }
 
 .msg {
   display: grid;
   gap: 6px;
 }
 
 .msg .who {
   font-size: 11px;
   color: var(--subtle);
 }
 
 .msg .bubble {
   padding: 10px 12px;
   border-radius: 16px;
   border: 1px solid rgba(255, 255, 255, 0.10);
   background: rgba(255, 255, 255, 0.05);
   color: rgba(255, 255, 255, 0.90);
   line-height: 1.5;
   cursor: default;
 }
 
 .msg.me {
   justify-items: end;
 }
 
 .msg.me .bubble {
   background: rgba(255, 45, 85, 0.14);
   border-color: rgba(255, 45, 85, 0.22);
 }
 
 .chatbox .input {
   display: grid;
   grid-template-columns: 1fr auto;
   gap: 10px;
   padding: 10px;
   border-top: 1px solid rgba(255, 255, 255, 0.08);
 }
 
 .chatbox input {
   width: 100%;
   border: 1px solid rgba(255, 255, 255, 0.10);
   background: rgba(0, 0, 0, 0.18);
   border-radius: 14px;
   padding: 12px 12px;
   outline: none;
   color: var(--text);
 }
 
 .chatbox .send {
   border: 0;
   border-radius: 14px;
   padding: 10px 12px;
   font-weight: 800;
   cursor: pointer;
   color: rgba(255, 255, 255, 0.92);
   background: linear-gradient(135deg, rgba(255, 45, 85, 0.98), rgba(255, 176, 32, 0.88));
   border: 1px solid rgba(255, 45, 85, 0.35);
 }

 body.locked {
   overflow: hidden;
 }

 body.locked header,
 body.locked main,
 body.locked footer {
   filter: blur(7px);
   opacity: 0.22;
   pointer-events: none;
   user-select: none;
 }

 .welcome {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(10, 10, 16, 0.92);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.96);
  transition: opacity 0.6s, transform 0.6s, backdrop-filter 0.6s;
}

.welcome::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--welcome-bg, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.7;
  z-index: -1;
}

 .welcome-card {
   width: min(600px, 100%);
   border-radius: 26px;
   overflow: hidden;
   border: 1px solid rgba(255, 255, 255, 0.12);
   background: rgba(10, 10, 16, 0.92);
   box-shadow: var(--shadow);
   display: grid;
   grid-template-columns: 1fr;
 }

 .welcome-body {
   padding: 24px;
   display: grid;
   align-content: center;
   gap: 16px;
 }

 .welcome-title {
   margin: 2px 0 0;
   font-family: "Playfair Display", serif;
   font-size: 38px;
   line-height: 1.06;
 }

 .welcome-sub {
   margin: 0;
   color: var(--muted);
   line-height: 1.6;
 }

 .welcome-actions {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
   margin-top: 6px;
 }

 .welcome-owner {
   display: grid;
   gap: 8px;
   padding: 12px;
   border-radius: 18px;
   border: 1px solid rgba(255, 255, 255, 0.10);
   background: rgba(255, 255, 255, 0.04);
 }

 .welcome-line {
   display: grid;
   grid-template-columns: 92px 1fr;
   gap: 10px;
   align-items: start;
 }

 .welcome-line .k {
   font-size: 12px;
   color: var(--subtle);
   font-weight: 800;
 }

 .welcome-line .v {
   font-size: 13px;
   color: rgba(255, 255, 255, 0.90);
   line-height: 1.5;
 }

 .welcome-xp {
   margin-top: 2px;
   font-size: 12px;
   color: var(--muted);
 }

 .welcome-quote {
   padding: 12px;
   border-radius: 18px;
   border: 1px solid rgba(255, 255, 255, 0.10);
   background: rgba(255, 45, 85, 0.10);
   color: rgba(255, 255, 255, 0.88);
   line-height: 1.55;
   min-height: 54px;
 }

 @media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-right {
    grid-template-rows: 1fr 1fr;
    gap: 16px;
  }

  .hero-image {
    min-height: 220px;
  }

  .welcome-card {
    grid-template-columns: 1fr;
    width: min(500px, 100%);
  }
}

 @media (max-width: 980px) {
   .hero-grid {
     grid-template-columns: 1fr;
   }

   .products {
     grid-template-columns: repeat(2, minmax(0, 1fr));
   }
 
   .two-col {
     grid-template-columns: 1fr;
   }
 
   .grid.cols-3 {
     grid-template-columns: 1fr;
   }
 
   .footer-grid {
     grid-template-columns: 1fr;
   }
 }
 
 @media (max-width: 860px) {
   .menu-btn {
     display: inline-grid;
     place-items: center;
   }
 
   nav {
     position: absolute;
     top: 100%;
     left: 20px;
     right: 20px;
     display: none;
     flex-direction: column;
     gap: 8px;
     padding: 12px;
     border-radius: 18px;
     background: rgba(10, 10, 16, 0.92);
     border: 1px solid rgba(255, 255, 255, 0.12);
     box-shadow: var(--shadow);
   }
 
   nav.open {
     display: flex;
   }
 
   .actions {
     gap: 8px;
   }
 }
 
 @media (max-width: 520px) {
   .products {
     grid-template-columns: 1fr;
   }
 
   .stats {
     grid-template-columns: 1fr;
   }
 }
