:root{
  /* Enhanced color palette */
  --bg0:#050607;
  --bg1:#0A0C0F;
  --card:rgba(255,255,255,.08);
  --card2:rgba(255,255,255,.12);
  --stroke:rgba(255,255,255,.15);
  --stroke2:rgba(255,255,255,.22);
  --text:#F2F4F7;
  --muted:rgba(242,244,247,.75);
  --muted2:rgba(242,244,247,.58);

  /* Purple accent colors */
  --purple-primary:rgba(190,120,255,1);
  --purple-secondary:rgba(255,80,220,1);
  --purple-glow:rgba(190,120,255,.4);
  --purple-glow-strong:rgba(190,120,255,.6);

  /* Neutral accents */
  --brand:#D6DAE3;
  --brand2:#7E8596;
  --danger:#FF5064;
  --warning:#FFC850;
  --success:#50FF78;

  /* Enhanced shadows with intense glow */
  --shadow: 0 32px 100px rgba(0,0,0,.75), 0 0 80px rgba(190,120,255,.2), 0 0 120px rgba(255,80,220,.1);
  --shadow2: 0 20px 64px rgba(0,0,0,.6), 0 0 60px rgba(190,120,255,.15), 0 0 90px rgba(255,80,220,.08);
  --shadow-glow: 0 0 60px rgba(190,120,255,.4), 0 0 100px rgba(255,80,220,.2);
  --shadow-intense: 0 40px 120px rgba(0,0,0,.8), 0 0 100px rgba(190,120,255,.3), 0 0 150px rgba(255,80,220,.15);
  --radius: 20px;
  --radius2: 16px;
  --radius3: 14px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
html{ color-scheme: dark; scroll-behavior: smooth; }
body{
  margin:0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1600px 1000px at 10% 5%, rgba(190,120,255,.18), transparent 45%),
    radial-gradient(1400px 900px at 90% 10%, rgba(255,80,220,.12), transparent 45%),
    radial-gradient(1200px 800px at 50% 95%, rgba(190,120,255,.1), transparent 50%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}
body::before{
  content: '';
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(circle 1000px at 20% 30%, rgba(190,120,255,.08), transparent 45%),
    radial-gradient(circle 800px at 80% 70%, rgba(255,80,220,.05), transparent 45%),
    radial-gradient(circle 600px at 50% 50%, rgba(190,120,255,.04), transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: backgroundPulse 15s ease-in-out infinite;
  filter: blur(40px);
}
body::after{
  content: '';
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(circle 600px at 15% 20%, rgba(255,80,220,.06), transparent 60%),
    radial-gradient(circle 500px at 85% 80%, rgba(190,120,255,.05), transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: backgroundPulse 20s ease-in-out infinite reverse;
  filter: blur(60px);
}
@keyframes backgroundPulse{
  0%, 100%{ opacity: 1; transform: scale(1) translate(0, 0); }
  33%{ opacity: .9; transform: scale(1.15) translate(2%, -1%); }
  66%{ opacity: .85; transform: scale(.95) translate(-1%, 2%); }
}

/* ===== Home (landing) ===== */
.theme-home{
  /* Ultra enhanced gradient with intense depth and animation */
  background: 
    radial-gradient(1800px 1200px at 15% 0%, rgba(190,120,255,.15), transparent 40%),
    radial-gradient(1600px 1000px at 85% 0%, rgba(255,80,220,.1), transparent 40%),
    radial-gradient(1400px 900px at 50% 100%, rgba(190,120,255,.08), transparent 45%),
    linear-gradient(180deg, #050607 0%, #0a0810 25%, #0f0a18 55%, #150d20 100%);
  position: relative;
  overflow-x: hidden;
}
.theme-home::after{
  content: '';
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(circle 1200px at 25% 20%, rgba(190,120,255,.08), transparent 55%),
    radial-gradient(circle 1000px at 75% 80%, rgba(255,80,220,.06), transparent 55%),
    radial-gradient(circle 800px at 50% 50%, rgba(190,120,255,.05), transparent 60%);
  pointer-events: none;
  z-index: 1;
  animation: gradientShift 20s ease-in-out infinite;
  filter: blur(50px);
}
.theme-home::before{
  content: '';
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(circle 600px at 30% 40%, rgba(255,80,220,.04), transparent 70%),
    radial-gradient(circle 500px at 70% 60%, rgba(190,120,255,.03), transparent 70%);
  pointer-events: none;
  z-index: 1;
  animation: gradientShift 30s ease-in-out infinite reverse;
  filter: blur(80px);
}
@keyframes gradientShift{
  0%, 100%{ transform: translate(0, 0) scale(1) rotate(0deg); opacity: 1; }
  25%{ transform: translate(3%, -2%) scale(1.1) rotate(2deg); opacity: .9; }
  50%{ transform: translate(-2%, 3%) scale(.95) rotate(-1deg); opacity: .95; }
  75%{ transform: translate(1%, 1%) scale(1.05) rotate(1deg); opacity: .92; }
}


.theme-home .brand__mark{
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(190,120,255,.55));
  box-shadow: 0 10px 30px rgba(190,120,255,.14), 0 10px 30px rgba(0,0,0,.35);
}

.theme-home .btn{
  background: linear-gradient(135deg, rgba(190,120,255,.75), rgba(255,80,220,.55));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 50px rgba(190,120,255,.16);
}
.theme-home .btn--ghost{
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: none;
}

.home{
  min-height: 100vh;
  padding: 18px 18px 28px;
  position: relative;
  z-index: 2;
}
.home__header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  position: sticky;
  top: 0;
  padding: 16px 0;
  z-index: 80;
  background: linear-gradient(180deg, rgba(5,6,7,.7), rgba(5,6,7,.5));
  backdrop-filter: blur(32px) saturate(200%);
  border-bottom: 2px solid rgba(255,255,255,.1);
  margin-bottom: 8px;
  transition: all .5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0,0,0,.4), 0 0 60px rgba(190,120,255,.15), inset 0 1px 0 rgba(255,255,255,.1);
}
.home__header::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(190,120,255,.15), rgba(255,80,220,.1), rgba(190,120,255,.15), transparent);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity .5s ease;
  animation: shimmer 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.home__header::after{
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(190,120,255,.6), rgba(255,80,220,.5), rgba(190,120,255,.6), transparent);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity .5s ease;
  animation: shimmer 3s ease-in-out infinite;
  filter: blur(4px);
  pointer-events: none;
  z-index: 0;
}
.home__header > *{
  position: relative;
  z-index: 1;
}
.home__header:hover{
  background: linear-gradient(180deg, rgba(5,6,7,.85), rgba(5,6,7,.7));
  border-bottom-color: rgba(190,120,255,.3);
  box-shadow: 0 12px 48px rgba(0,0,0,.5), 0 0 80px rgba(190,120,255,.25), inset 0 1px 0 rgba(255,255,255,.15);
  transform: translateY(-2px);
}
.home__header:hover::before{
  opacity: 1;
}
.home__header:hover::after{
  opacity: 1;
}
@keyframes shimmer{
  0%{ background-position: -200% 0; }
  100%{ background-position: 200% 0; }
}
.home__brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.home__nav{
  display:flex;
  gap: 8px;
  align-items:center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.15);
  background: linear-gradient(180deg, rgba(0,0,0,.5), rgba(0,0,0,.4));
  backdrop-filter: blur(24px) saturate(200%);
  box-shadow: 0 12px 40px rgba(0,0,0,.5), 0 0 40px rgba(190,120,255,.2), inset 0 1px 0 rgba(255,255,255,.1), inset 0 -1px 0 rgba(255,255,255,.05);
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.home__nav::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(190,120,255,.2), rgba(255,80,220,.15), rgba(190,120,255,.2));
  background-size: 200% 200%;
  opacity: 0;
  transition: opacity .4s ease;
  animation: navGradient 8s ease-in-out infinite;
  border-radius: 999px;
  pointer-events: none;
}
@keyframes navGradient{
  0%, 100%{ background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
}
.home__nav:hover{
  border-color: rgba(190,120,255,.4);
  background: linear-gradient(180deg, rgba(0,0,0,.6), rgba(0,0,0,.5));
  box-shadow: 0 16px 56px rgba(0,0,0,.6), 0 0 60px rgba(190,120,255,.3), inset 0 1px 0 rgba(255,255,255,.15), inset 0 -1px 0 rgba(255,255,255,.08);
  transform: translateY(-2px) scale(1.02);
}
.home__nav:hover::before{
  opacity: 1;
}
.home__ico{
  display:inline-flex;
  width: 16px;
  justify-content:center;
  margin-right: 6px;
  opacity: .85;
}
.home__link{
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  color: rgba(242,244,247,.75);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  transition: all .25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.home__link::before{
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(190,120,255,.2), rgba(255,80,220,.15));
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.home__link:hover{ 
  color: rgba(255,255,255,.95);
  transform: translateY(-1px);
}
.home__link:hover::before{
  opacity: 1;
}
.home__link.active{
  color: rgba(255,255,255,1);
  background: linear-gradient(135deg, rgba(190,120,255,.4), rgba(255,80,220,.35), rgba(190,120,255,.4));
  background-size: 200% 100%;
  box-shadow: 0 8px 32px rgba(190,120,255,.4), 0 0 30px rgba(190,120,255,.3), 0 0 50px rgba(255,80,220,.2), inset 0 1px 0 rgba(255,255,255,.2), inset 0 -1px 0 rgba(255,255,255,.1);
  animation: activeLinkPulse 2.5s ease-in-out infinite, activeLinkGradient 4s ease-in-out infinite;
  position: relative;
}
.home__link.active::after{
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, rgba(190,120,255,.6), rgba(255,80,220,.5));
  border-radius: 999px;
  z-index: -1;
  filter: blur(12px);
  opacity: .8;
  animation: activeLinkGlow 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes activeLinkPulse{
  0%, 100%{ box-shadow: 0 8px 32px rgba(190,120,255,.4), 0 0 30px rgba(190,120,255,.3), 0 0 50px rgba(255,80,220,.2), inset 0 1px 0 rgba(255,255,255,.2); }
  50%{ box-shadow: 0 12px 48px rgba(190,120,255,.5), 0 0 40px rgba(190,120,255,.4), 0 0 70px rgba(255,80,220,.3), inset 0 1px 0 rgba(255,255,255,.25); }
}
@keyframes activeLinkGradient{
  0%, 100%{ background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
}
@keyframes activeLinkGlow{
  0%, 100%{ opacity: .6; transform: scale(1); }
  50%{ opacity: 1; transform: scale(1.1); }
}
.home__link.active::before{
  opacity: 1;
}
.home__cabinet{ white-space: nowrap; }

.home__main{
  padding: 34px 0 26px;
}
.home__hero{
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 18px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  animation: heroFadeIn 1s ease-out;
}
@keyframes heroFadeIn{
  from{
    opacity: 0;
    transform: translateY(30px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}
.home__hero::before{
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(190,120,255,.15), transparent 70%);
  filter: blur(80px);
  z-index: -1;
  animation: heroGlow 8s ease-in-out infinite;
}
@keyframes heroGlow{
  0%, 100%{ opacity: .5; transform: translateX(-50%) scale(1); }
  50%{ opacity: .8; transform: translateX(-50%) scale(1.2); }
}
.home__logo-large{
  width: 160px;
  height: 160px;
  position: relative;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home__logo-img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 60px rgba(190,120,255,.5)) drop-shadow(0 0 100px rgba(255,80,220,.3));
}
.home__pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.20);
  backdrop-filter: blur(10px);
  color: rgba(242,244,247,.82);
  font-weight: 900;
  font-size: 13px;
}
.home__pillDot{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.35), rgba(167,95,255,.28));
  border: 1px solid rgba(255,255,255,.14);
}
.home__title{
  margin: 18px 0 10px;
  font-size: clamp(30px, 3.6vw, 54px);
  font-weight: 1000;
  letter-spacing: .2px;
}
.home__title--grad{
  background: linear-gradient(90deg, rgba(255,255,255,.98), rgba(190,120,255,.9), rgba(255,80,220,.85), rgba(190,120,255,.9), rgba(255,255,255,.98));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientFlow 8s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(190,120,255,.3));
}
@keyframes gradientFlow{
  0%, 100%{ background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
}
.home__subtitle{
  margin: 0 auto;
  max-width: 760px;
  color: rgba(242,244,247,.62);
  font-weight: 800;
  line-height: 1.55;
}
.home__cta{
  margin-top: 22px;
  display:flex;
  justify-content:center;
  gap: 12px;
  flex-wrap: wrap;
}
.home__ctaBtn{
  min-width: 170px;
}

.home__section{
  max-width: 1100px;
  margin: 32px auto 0;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(0,0,0,.4), rgba(0,0,0,.25));
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 40px rgba(190,120,255,.08), inset 0 1px 0 rgba(255,255,255,.05);
  transition: all .3s ease;
}
.home__section::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(190,120,255,.08), rgba(255,80,220,.04), rgba(190,120,255,.08));
  background-size: 200% 200%;
  border-radius: 24px;
  opacity: 0;
  z-index: -1;
  transition: opacity .4s ease;
  animation: sectionGradient 10s ease-in-out infinite;
  pointer-events: none;
}
.home__section::after{
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(190,120,255,.1), transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
  animation: sectionRotate 20s linear infinite;
  pointer-events: none;
  z-index: -1;
}
@keyframes sectionGradient{
  0%, 100%{ background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
}
.home__section:hover{
  border-color: rgba(190,120,255,.45);
  background: linear-gradient(180deg, rgba(0,0,0,.65), rgba(0,0,0,.5));
  box-shadow: 0 32px 100px rgba(0,0,0,.7), 0 0 80px rgba(190,120,255,.25), 0 0 120px rgba(255,80,220,.15), inset 0 1px 0 rgba(255,255,255,.15), inset 0 -1px 0 rgba(255,255,255,.1);
  transform: translateY(-6px) scale(1.01);
}
.home__section:hover::before{
  opacity: 1;
}
.home__section:hover::after{
  opacity: 1;
}
.home__sectionHead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.home__h2{
  margin: 0;
  font-size: 18px;
  font-weight: 1000;
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(190,120,255,.85));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 4px rgba(190,120,255,.2));
}
.home__p{
  margin: 0;
  color: rgba(242,244,247,.58);
  font-weight: 800;
  font-size: 13px;
}
.home__cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.home__card{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.2));
  padding: 18px;
  backdrop-filter: blur(10px);
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.home__card::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(190,120,255,.15), rgba(255,80,220,.08), rgba(190,120,255,.15));
  background-size: 200% 200%;
  opacity: 0;
  transition: opacity .4s ease;
  animation: cardGradient 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.home__card > *{
  position: relative;
  z-index: 1;
}
@keyframes cardGradient{
  0%, 100%{ background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
}
.home__card::after{
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, rgba(190,120,255,.6), rgba(255,80,220,.5), rgba(190,120,255,.6));
  background-size: 200% 200%;
  border-radius: 22px;
  opacity: 0;
  z-index: -1;
  filter: blur(16px);
  transition: opacity .4s ease;
  animation: cardGlow 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes cardGlow{
  0%, 100%{ background-position: 0% 50%; opacity: 0; }
  50%{ background-position: 100% 50%; opacity: .8; }
}
.home__card:hover{
  border-color: rgba(190,120,255,.5);
  background: linear-gradient(180deg, rgba(0,0,0,.6), rgba(0,0,0,.45));
  box-shadow: 0 16px 64px rgba(0,0,0,.6), 0 0 60px rgba(190,120,255,.35), 0 0 100px rgba(255,80,220,.2), inset 0 1px 0 rgba(255,255,255,.15), inset 0 -1px 0 rgba(255,255,255,.08);
  transform: translateY(-8px) scale(1.03);
}
.home__card:hover::before{
  opacity: 1;
}
.home__card:hover::after{
  opacity: 1;
  filter: blur(20px);
}
.home__cardTitle{ 
  font-weight: 1000; 
  margin-bottom: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(190,120,255,.75));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: all .3s ease;
}
.home__card:hover .home__cardTitle{
  filter: drop-shadow(0 0 6px rgba(190,120,255,.3));
}
.home__cardText{ color: rgba(242,244,247,.60); font-weight: 800; font-size: 13px; line-height: 1.45; }
.home__gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.home__shot{
  height: 140px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(500px 220px at 30% 30%, rgba(167,95,255,.2), transparent 55%),
    radial-gradient(380px 200px at 70% 60%, rgba(255,80,220,.12), transparent 55%),
    rgba(0,0,0,.3);
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.home__shot::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(190,120,255,.1), rgba(255,80,220,.05));
  opacity: 0;
  transition: opacity .4s ease;
}
.home__shot:hover{
  border-color: rgba(190,120,255,.3);
  box-shadow: 0 8px 32px rgba(0,0,0,.5), 0 0 24px rgba(190,120,255,.2);
  transform: translateY(-4px) scale(1.02);
}
.home__shot:hover::before{
  opacity: 1;
}
.home__stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.home__stat{
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(0,0,0,.4), rgba(0,0,0,.25));
  padding: 20px;
  backdrop-filter: blur(12px);
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.home__stat::before{
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(190,120,255,.2), rgba(255,80,220,.1), transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
  animation: statPulse 4s ease-in-out infinite;
}
@keyframes statPulse{
  0%, 100%{ opacity: 0; transform: scale(1); }
  50%{ opacity: .6; transform: scale(1.05); }
}
.home__stat::after{
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: conic-gradient(from 0deg, rgba(190,120,255,.3), rgba(255,80,220,.2), rgba(190,120,255,.3));
  border-radius: 22px;
  opacity: 0;
  z-index: -1;
  filter: blur(10px);
  transition: opacity .4s ease;
  animation: statRotate 8s linear infinite;
  pointer-events: none;
}
.home__stat::before{
  pointer-events: none;
  z-index: 0;
}
.home__stat > *{
  position: relative;
  z-index: 1;
}
@keyframes statRotate{
  0%{ transform: rotate(0deg); }
  100%{ transform: rotate(360deg); }
}
.home__stat:hover{
  border-color: rgba(190,120,255,.5);
  background: linear-gradient(180deg, rgba(0,0,0,.65), rgba(0,0,0,.5));
  box-shadow: 0 16px 64px rgba(0,0,0,.6), 0 0 50px rgba(190,120,255,.35), 0 0 80px rgba(255,80,220,.2), inset 0 1px 0 rgba(255,255,255,.15), inset 0 -1px 0 rgba(255,255,255,.1);
  transform: translateY(-8px) scale(1.05);
}
.home__stat:hover::before{
  opacity: 1;
}
.home__stat:hover::after{
  opacity: 1;
}
.home__statN{ 
  font-weight: 1100; 
  font-size: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(190,120,255,.85), rgba(255,80,220,.8));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 8px rgba(190,120,255,.3));
  transition: all .3s ease;
}
.home__stat:hover .home__statN{
  filter: drop-shadow(0 0 12px rgba(190,120,255,.5));
  transform: scale(1.05);
}
.home__statL{ color: rgba(242,244,247,.60); font-weight: 900; font-size: 12px; margin-top: 6px; }
.home__buy{
  max-width: 520px;
  margin: 0 auto;
}
.home__footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
  padding: 18px 4px 0;
  color: rgba(242,244,247,.55);
  font-weight: 800;
}

/* Site Footer */
.site-footer{
  margin-top: 60px;
  padding: 40px 18px 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: transparent;
}
.site-footer__content{
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 32px;
}
.site-footer__social{
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.site-footer__social-link{
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(190,120,255,.85);
  text-decoration: none;
  transition: all .2s ease;
}
.site-footer__social-link svg{
  width: 20px;
  height: 20px;
}
.site-footer__social-link{
  position: relative;
  overflow: hidden;
}
.site-footer__social-link::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(190,120,255,.3), rgba(255,80,220,.2));
  opacity: 0;
  transition: opacity .3s ease;
  border-radius: 12px;
}
.site-footer__social-link:hover{
  background: rgba(255,255,255,.12);
  border-color: rgba(190,120,255,.4);
  color: rgba(255,80,220,1);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,.4), 0 0 20px rgba(190,120,255,.3);
}
.site-footer__social-link:hover::before{
  opacity: 1;
}
.site-footer__columns{
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  flex: 1;
}
.site-footer__column{
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 180px;
}
.site-footer__title{
  color: rgba(242,244,247,.85);
  font-weight: 1000;
  font-size: 14px;
  margin-bottom: 4px;
  letter-spacing: .3px;
}
.site-footer__link{
  color: rgba(190,120,255,.75);
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  transition: color .2s ease;
}
.site-footer__link:hover{
  color: rgba(255,80,220,.95);
}
.site-footer__bottom{
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.site-footer__bottom-left{
  display: flex;
  flex-direction: column;
  gap: 0;
}
.site-footer__copyright{
  color: rgba(242,244,247,.55);
  font-weight: 800;
  font-size: 12px;
}
.site-footer__bottom-right{
  text-align: right;
}
.site-footer__copy{
  color: rgba(242,244,247,.45);
  font-weight: 800;
  font-size: 12px;
}

@media (max-width: 920px){
  .site-footer__content{
    flex-direction: column;
    gap: 32px;
  }
  .site-footer__columns{
    gap: 32px;
  }
  .site-footer__bottom{
    flex-direction: column;
    align-items: flex-start;
  }
  .site-footer__bottom-right{
    text-align: left;
  }
}

/* FAQ Section */
.home__section--faq{
  text-align: center;
}
.home__faqHead{
  margin-bottom: 24px;
}
.home__faqTitle{
  margin: 0 0 8px;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 1000;
  background: linear-gradient(90deg, rgba(255,255,255,.95), rgba(190,120,255,.85), rgba(255,80,220,.80));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.home__faqSubtitle{
  margin: 0;
  color: rgba(242,244,247,.62);
  font-weight: 800;
  font-size: 14px;
}
.home__faqList{
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
.home__faqItem{
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(0,0,0,.4), rgba(0,0,0,.25));
  overflow: hidden;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
}
.home__faqItem:hover{
  border-color: rgba(190,120,255,.2);
  background: linear-gradient(180deg, rgba(0,0,0,.5), rgba(0,0,0,.35));
  box-shadow: 0 8px 32px rgba(0,0,0,.4), 0 0 24px rgba(190,120,255,.1);
  transform: translateY(-2px);
}
.home__faqItem.is-open{
  border-color: rgba(190,120,255,.4);
  background: linear-gradient(180deg, rgba(0,0,0,.6), rgba(0,0,0,.45));
  box-shadow: 0 16px 48px rgba(0,0,0,.6), 0 0 40px rgba(190,120,255,.2), inset 0 1px 0 rgba(255,255,255,.08);
  animation: faqOpen .4s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes faqOpen{
  0%{ transform: scale(.98); opacity: .9; }
  100%{ transform: scale(1); opacity: 1; }
}
.home__faqQuestion{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border: none;
  background: transparent;
  color: rgba(242,244,247,.85);
  font-weight: 900;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: color .15s ease;
}
.home__faqQuestion:hover{
  color: rgba(242,244,247,.95);
}
.home__faqChevron{
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(190,120,255,.85);
  transition: transform .2s ease, color .15s ease;
}
.home__faqItem.is-open .home__faqChevron{
  transform: rotate(180deg);
  color: rgba(255,80,220,.85);
}
.home__faqAnswer{
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 18px;
}
.home__faqItem.is-open .home__faqAnswer{
  max-height: 500px;
  padding: 0 18px 18px;
}
.home__faqAnswer p{
  margin: 0;
  color: rgba(242,244,247,.70);
  font-weight: 800;
  font-size: 13px;
  line-height: 1.6;
  padding-top: 8px;
}

@media (max-width: 920px){
  .home__nav{ display:none; }
  .home__cards, .home__gallery, .home__stats{ grid-template-columns: 1fr; }
  .home__section{
    padding: 20px;
    margin: 24px auto 0;
  }
  .home__card, .prod__card, .home__stat{
    padding: 16px;
  }
  .btn{
    padding: 12px 16px;
    font-size: 13px;
  }
}

/* Products */
.prod__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.prod__grid::-webkit-scrollbar {
  width: 10px;
}
.prod__grid::-webkit-scrollbar-track {
  background: rgba(0,0,0,.2);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.05);
}
.prod__grid::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(190,120,255,.6), rgba(255,80,220,.5));
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: inset 0 0 6px rgba(190,120,255,.3);
  transition: all .3s ease;
}
.prod__grid::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(190,120,255,.8), rgba(255,80,220,.7));
  box-shadow: inset 0 0 10px rgba(190,120,255,.5), 0 0 12px rgba(190,120,255,.3);
}
.prod__card{
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(0,0,0,.4), rgba(0,0,0,.25));
  padding: 20px;
  backdrop-filter: blur(12px);
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.prod__card::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(190,120,255,.18), rgba(255,80,220,.1), rgba(190,120,255,.18));
  background-size: 200% 200%;
  opacity: 0;
  transition: opacity .4s ease;
  animation: cardGradient 6s ease-in-out infinite;
}
.prod__card::after{
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(135deg, rgba(190,120,255,.7), rgba(255,80,220,.6), rgba(190,120,255,.7));
  background-size: 200% 200%;
  border-radius: 24px;
  opacity: 0;
  z-index: -1;
  filter: blur(20px);
  transition: opacity .4s ease;
  animation: cardGlow 3s ease-in-out infinite;
  pointer-events: none;
}
.prod__card::before{
  pointer-events: none;
  z-index: 0;
}
.prod__card > *{
  position: relative;
  z-index: 1;
}
.prod__card:hover{
  border-color: rgba(190,120,255,.5);
  background: linear-gradient(180deg, rgba(0,0,0,.7), rgba(0,0,0,.5));
  box-shadow: 0 20px 72px rgba(0,0,0,.7), 0 0 70px rgba(190,120,255,.4), 0 0 120px rgba(255,80,220,.25), inset 0 1px 0 rgba(255,255,255,.18), inset 0 -1px 0 rgba(255,255,255,.1);
  transform: translateY(-10px) scale(1.04);
}
.prod__card:hover::before{
  opacity: 1;
}
.prod__card:hover::after{
  opacity: 1;
  filter: blur(24px);
}
.prod__title{
  font-weight: 1100;
  font-size: 16px;
  margin-bottom: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(190,120,255,.85));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: all .3s ease;
}
.prod__card:hover .prod__title{
  filter: drop-shadow(0 0 8px rgba(190,120,255,.4));
}
.prod__desc{
  color: rgba(242,244,247,.60);
  font-weight: 800;
  font-size: 13px;
  line-height: 1.45;
  margin-bottom: 12px;
}
.prod__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}
.prod__price{
  color: rgba(242,244,247,.78);
  font-weight: 900;
  font-size: 13px;
}
@media (max-width: 920px){
  .prod__grid{ grid-template-columns: 1fr; }
}

/* ===== Cabinet (profile card like reference) ===== */
.theme-cabinet{
  background:
    radial-gradient(900px 600px at 35% 15%, rgba(167, 95, 255, .18), transparent 60%),
    radial-gradient(800px 540px at 75% 70%, rgba(255, 80, 220, .10), transparent 60%),
    linear-gradient(180deg, #050607, #070810);
}
.cab{
  min-height: 100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 28px 16px;
}
.cab__card{
  width: min(820px, 100%);
  border-radius: 32px;
  border: 2px solid rgba(255,255,255,.2);
  background: linear-gradient(180deg, rgba(0,0,0,.65), rgba(0,0,0,.5));
  box-shadow: 0 40px 120px rgba(0,0,0,.8), 0 0 80px rgba(190,120,255,.2), 0 0 120px rgba(255,80,220,.12), inset 0 1px 0 rgba(255,255,255,.15), inset 0 -1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(40px) saturate(200%);
  overflow: hidden;
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.cab__card::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(190,120,255,.12), rgba(255,80,220,.06));
  opacity: 0;
  transition: opacity .4s ease;
}
.cab__card:hover{
  border-color: rgba(190,120,255,.4);
  box-shadow: 0 48px 140px rgba(0,0,0,.85), 0 0 100px rgba(190,120,255,.3), 0 0 150px rgba(255,80,220,.18), inset 0 1px 0 rgba(255,255,255,.2), inset 0 -1px 0 rgba(255,255,255,.12);
  transform: translateY(-4px) scale(1.01);
}
.cab__card:hover::before{
  opacity: 1;
}
.cab__cover{
  position: relative;
  height: 150px;
  background:
    radial-gradient(700px 250px at 25% 40%, rgba(255,255,255,.12), transparent 60%),
    radial-gradient(560px 220px at 70% 35%, rgba(190,120,255,.22), transparent 62%),
    radial-gradient(520px 220px at 80% 70%, rgba(255,80,220,.12), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.15));
}
.cab__avatar{
  position:absolute;
  left: 22px;
  top: 22px;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  border: 3px solid rgba(190,120,255,.80);
  box-shadow: 0 18px 50px rgba(0,0,0,.55);
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.35), transparent 55%),
    radial-gradient(circle at 60% 60%, rgba(190,120,255,.35), transparent 55%),
    rgba(0,0,0,.35);
  cursor: pointer;
  overflow: hidden;
  transition: border-color .2s ease, transform .1s ease;
}
.cab__avatar:hover{
  border-color: rgba(255,80,220,.85);
  transform: scale(1.05);
}
.cab__avatarLabel{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(0,0,0,.3);
  transition: background .2s ease;
}
.cab__avatar:hover .cab__avatarLabel{
  background: rgba(0,0,0,.5);
}
.cab__avatarIcon{
  font-size: 24px;
  opacity: .8;
  transition: opacity .2s ease;
}
.cab__avatar:hover .cab__avatarIcon{
  opacity: 1;
}
.cab__body{
  padding: 18px 20px 18px;
}
.cab__head{
  margin-bottom: 10px;
}
.cab__title{
  font-weight: 1100;
  font-size: 24px;
  letter-spacing: .2px;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(190,120,255,.9), rgba(255,80,220,.85));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 8px rgba(190,120,255,.3));
}
.cab__sub{
  margin-top: 6px;
  color: rgba(242,244,247,.62);
  font-weight: 800;
  font-size: 13px;
}
.cab__rows{
  margin-top: 10px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.cab__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.cab__k{
  color: rgba(242,244,247,.55);
  font-weight: 900;
  font-size: 13px;
}
.cab__v{
  color: rgba(242,244,247,.90);
  font-weight: 900;
  font-size: 13px;
}
.cab__actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content:center;
  padding: 14px 0 6px;
}
.cab__btn{
  background: linear-gradient(135deg, rgba(190,120,255,.75), rgba(255,80,220,.55)) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  box-shadow: 0 18px 50px rgba(190,120,255,.16) !important;
  min-width: 170px;
}

/* Licenses Modal */
.licenses-modal{
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.licenses-modal--show{
  opacity: 1;
  pointer-events: auto;
}
.licenses-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.8);
  backdrop-filter: blur(16px) saturate(150%);
  animation: backdropFadeIn .3s ease;
}
.licenses-modal__dialog{
  position: relative;
  z-index: 1;
  width: min(700px, 90vw);
  max-height: 80vh;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(0,0,0,.6), rgba(0,0,0,.45));
  box-shadow: 0 32px 100px rgba(0,0,0,.8), 0 0 80px rgba(190,120,255,.2), inset 0 1px 0 rgba(255,255,255,.1);
  backdrop-filter: blur(24px) saturate(180%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: modalAppear .3s cubic-bezier(0.4, 0, 0.2, 1);
}
.licenses-modal__head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.licenses-modal__title{
  font-weight: 900;
  font-size: 20px;
  background: linear-gradient(90deg, rgba(255,255,255,.95), rgba(190,120,255,.85), rgba(255,80,220,.80));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.licenses-modal__close{
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: rgba(255,255,255,.06);
  color: rgba(242,244,247,.85);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease, color .15s ease;
}
.licenses-modal__close:hover{
  background: rgba(255,255,255,.12);
  color: rgba(242,244,247,.95);
}
.licenses-modal__body{
  padding: 22px;
  overflow-y: auto;
  flex: 1;
}
.licenses-modal__body::-webkit-scrollbar{
  width: 10px;
}
.licenses-modal__body::-webkit-scrollbar-track{
  background: rgba(0,0,0,.3);
  border-radius: 10px;
}
.licenses-modal__body::-webkit-scrollbar-thumb{
  background: linear-gradient(180deg, rgba(190,120,255,.6), rgba(255,80,220,.5));
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(190,120,255,.3);
}
.licenses-modal__body::-webkit-scrollbar-thumb:hover{
  background: linear-gradient(180deg, rgba(190,120,255,.8), rgba(255,80,220,.7));
}
.licenses-list{
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.license-item{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(0,0,0,.4), rgba(0,0,0,.25));
  padding: 20px;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
}
.license-item:hover{
  border-color: rgba(190,120,255,.3);
  background: linear-gradient(180deg, rgba(0,0,0,.5), rgba(0,0,0,.35));
  box-shadow: 0 8px 32px rgba(0,0,0,.4), 0 0 24px rgba(190,120,255,.15);
  transform: translateY(-3px);
}
.license-item__header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.license-item__plugin{
  font-weight: 900;
  font-size: 16px;
  color: rgba(242,244,247,.92);
}
.license-item__status{
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  border: 1px solid;
}
.license-item__status--active{
  background: rgba(80,255,120,.15);
  border-color: rgba(80,255,120,.35);
  color: rgba(80,255,120,.95);
}
.license-item__status--inactive{
  background: rgba(255,80,100,.15);
  border-color: rgba(255,80,100,.35);
  color: rgba(255,80,100,.95);
}
.license-item__key{
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: rgba(190,120,255,.85);
  font-weight: 800;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(0,0,0,.35);
  margin-bottom: 12px;
  word-break: break-all;
  cursor: pointer;
  transition: background .15s ease;
}
.license-item__key:hover{
  background: rgba(0,0,0,.45);
}
.license-item__info{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.license-item__row{
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(242,244,247,.75);
  font-weight: 800;
}
.license-item__row span:first-child{
  color: rgba(242,244,247,.55);
}
.license-item__row span:last-child{
  color: rgba(242,244,247,.92);
}
.cab__bottom{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content:center;
  padding-top: 10px;
}
.cab__bottomBtn{
  min-width: 140px;
}
.theme-cabinet .btn--ghost{
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.12);
}
.theme-cabinet .btn--danger{
  background: linear-gradient(135deg, rgba(255,80,80,.60), rgba(255,80,220,.38));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 50px rgba(255,80,120,.14);
}

@media (max-width: 620px){
  .cab__cover{ height: 120px; }
  .cab__btn, .cab__bottomBtn{ width: 100%; }
}

/* ===== Auth (login/register like reference) ===== */
.theme-auth{
  background:
    radial-gradient(900px 600px at 35% 15%, rgba(167, 95, 255, .18), transparent 60%),
    radial-gradient(800px 540px at 75% 70%, rgba(255, 80, 220, .10), transparent 60%),
    linear-gradient(180deg, #050607, #070810);
}
.auth{
  min-height: 100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 28px 16px;
}
.auth__card{
  width: min(720px, 100%);
  border-radius: 32px;
  border: 2px solid rgba(255,255,255,.2);
  background: linear-gradient(180deg, rgba(0,0,0,.65), rgba(0,0,0,.5));
  box-shadow: 0 40px 120px rgba(0,0,0,.8), 0 0 80px rgba(190,120,255,.2), 0 0 120px rgba(255,80,220,.12), inset 0 1px 0 rgba(255,255,255,.15), inset 0 -1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(40px) saturate(200%);
  padding: 36px 32px 32px;
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.auth__card::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(190,120,255,.1), rgba(255,80,220,.05));
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
  z-index: 0;
}
.auth__card > *{
  position: relative;
  z-index: 1;
}
.auth__card:hover{
  border-color: rgba(190,120,255,.4);
  box-shadow: 0 48px 140px rgba(0,0,0,.85), 0 0 100px rgba(190,120,255,.3), 0 0 150px rgba(255,80,220,.18), inset 0 1px 0 rgba(255,255,255,.2), inset 0 -1px 0 rgba(255,255,255,.12);
  transform: translateY(-4px) scale(1.01);
}
.auth__card:hover::before{
  opacity: 1;
}
.auth__title{
  text-align:center;
  font-weight: 1100;
  font-size: 36px;
  letter-spacing: .2px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(190,120,255,.9), rgba(255,80,220,.85));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 12px rgba(190,120,255,.3));
  animation: titleGlow 4s ease-in-out infinite;
}
@keyframes titleGlow{
  0%, 100%{ filter: drop-shadow(0 0 12px rgba(190,120,255,.3)); }
  50%{ filter: drop-shadow(0 0 20px rgba(190,120,255,.5)); }
}
.auth__field{
  margin: 12px auto 0;
  max-width: 560px;
}
.auth__label{
  color: rgba(242,244,247,.70);
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 8px;
}
.auth__input{
  width:100%;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.35);
  color: rgba(242,244,247,.95);
  outline:none;
  font-size: 14px;
  transition: all .25s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}
.auth__input:hover{
  border-color: rgba(255,255,255,.25);
  background: rgba(0,0,0,.4);
}
.auth__input:focus{
  border-color: rgba(190,120,255,.6);
  background: rgba(0,0,0,.45);
  box-shadow: 0 0 0 4px rgba(190,120,255,.2), 0 4px 16px rgba(190,120,255,.15);
  transform: translateY(-1px);
}
.auth__hint{
  margin-top: 8px;
  color: rgba(242,244,247,.52);
  font-weight: 800;
  font-size: 12px;
  line-height: 1.45;
}
.auth__btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  width: min(560px, 100%);
  margin: 18px auto 0;
  padding: 16px 20px;
  border-radius: 16px;
  border: 2px solid rgba(255,255,255,.25);
  background: linear-gradient(135deg, rgba(190,120,255,.95), rgba(255,80,220,.85));
  color: rgba(255,255,255,1);
  font-weight: 1100;
  cursor:pointer;
  box-shadow: 0 12px 48px rgba(0,0,0,.6), 0 0 60px rgba(190,120,255,.3), 0 0 100px rgba(255,80,220,.15);
  position: relative;
  z-index: 10;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.auth__btn::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.2), transparent);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none !important;
  z-index: 1;
  border-radius: 16px;
}
.auth__btn:hover{ 
  filter: brightness(1.1); 
  transform: translateY(-2px);
  box-shadow: 0 16px 64px rgba(0,0,0,.7), 0 0 80px rgba(190,120,255,.4), 0 0 120px rgba(255,80,220,.2);
}
.auth__btn:hover::before{
  opacity: 1;
}
.auth__btn:active{ 
  transform: translateY(0); 
  filter: brightness(.95); 
}
.auth__btn > *{
  position: relative;
  z-index: 10;
  pointer-events: none;
}
.auth__btn{
  pointer-events: auto !important;
}
.auth__bottom{
  text-align:center;
  margin-top: 14px;
  color: rgba(242,244,247,.55);
  font-weight: 900;
  font-size: 13px;
}
.auth__link{
  color: rgba(190,120,255,.95);
  text-decoration: none;
}
.auth__link:hover{ text-decoration: none; }
.auth__check{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  max-width: 560px;
  margin: 14px auto 0;
  color: rgba(242,244,247,.62);
  font-weight: 900;
  font-size: 12px;
}
.auth__check input{
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

a{ 
  color:inherit; 
  text-decoration: none;
}

.page{
  min-height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px 16px;
}

.page--admin{
  padding-top: 14px;
  padding-left: 18px;
  padding-right: 18px;
  background: linear-gradient(180deg, #050607 0%, #0a0810 40%, #0f0a18 70%, #150d20 100%);
  min-height: 100vh;
}

.shell{
  width: 100%;
  max-width: none;
  margin: 0;
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin: 8px 0 18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  user-select:none;
}
.brand__mark{
  width:44px;
  height:44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(140,146,160,.70));
  box-shadow: 0 10px 30px rgba(255,255,255,.08), 0 10px 30px rgba(0,0,0,.35);
  position:relative;
  overflow:hidden;
}
.brand__mark-img{
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 12px rgba(190,120,255,.3));
}
.brand__mark-img:hover{
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 8px 24px rgba(190,120,255,.5));
}
.brand__mark:before{
  content:"";
  position:absolute;
  inset:-40%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.45), transparent 55%);
  transform: rotate(25deg);
}
.brand__title{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand__name{
  font-weight:800;
  letter-spacing:.2px;
  font-size: 18px;
}
.brand__tagline{
  font-size: 13px;
  color: var(--muted2);
  margin-top: 2px;
}

.userbar{
  display:flex;
  align-items:center;
  gap:12px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  color: var(--muted);
  font-weight:600;
  box-shadow: var(--shadow2);
}

.grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
  /* ensure predictable stacking for overlays */
  isolation: isolate;
}

@media (min-width: 980px){
  .grid--2{
    grid-template-columns: 1.15fr .85fr;
    align-items:start;
  }
}

.card{
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.6), rgba(0,0,0,.45));
  border: 2px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 24px 80px rgba(0,0,0,.7), 0 0 60px rgba(190,120,255,.18), 0 0 100px rgba(255,80,220,.1), inset 0 1px 0 rgba(255,255,255,.12), inset 0 -1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(32px) saturate(200%);
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.card::after{
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(190,120,255,.15), transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
  animation: cardRotate 25s linear infinite;
  pointer-events: none;
  z-index: -1;
}
@keyframes cardRotate{
  0%{ transform: rotate(0deg); }
  100%{ transform: rotate(360deg); }
}
.card::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(190,120,255,.1), rgba(255,80,220,.05));
  border-radius: var(--radius);
  opacity: 0;
  z-index: -1;
  transition: opacity .4s ease;
  pointer-events: none;
}
.card > *{
  position: relative;
  z-index: 1;
}
.card:hover{
  border-color: rgba(190,120,255,.5);
  background: linear-gradient(180deg, rgba(0,0,0,.7), rgba(0,0,0,.55));
  box-shadow: 0 32px 100px rgba(0,0,0,.8), 0 0 100px rgba(190,120,255,.35), 0 0 150px rgba(255,80,220,.2), inset 0 1px 0 rgba(255,255,255,.2), inset 0 -1px 0 rgba(255,255,255,.1);
  transform: translateY(-6px) scale(1.01);
}
.card:hover::before{
  opacity: 1;
}
.card:hover::after{
  opacity: 1;
}

.card.card--overlay{
  z-index: 50;
}

.card__header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.card__title{
  margin:0;
  font-size: 16px;
  font-weight: 800;
  letter-spacing:.2px;
}
.card__desc{
  margin:6px 0 0;
  color: var(--muted2);
  font-size: 13px;
  line-height: 1.45;
}

.row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
}

.stack{
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.field{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.label{
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

input, textarea, select{
  width:100%;
  background: rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.16);
  color: var(--text);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 14px;
  outline:none;
  transition: all .25s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}
input:hover, textarea:hover, select:hover{
  border-color: rgba(255,255,255,.22);
  background: rgba(0,0,0,.45);
}
input:focus, textarea:focus, select:focus{
  border-color: rgba(190,120,255,.7);
  background: rgba(0,0,0,.55);
  box-shadow: 0 0 0 4px rgba(190,120,255,.25), 0 6px 24px rgba(190,120,255,.2), 0 0 40px rgba(190,120,255,.1);
  transform: translateY(-2px);
  animation: inputPulse 2s ease-in-out infinite;
}
@keyframes inputPulse{
  0%, 100%{ box-shadow: 0 0 0 4px rgba(190,120,255,.25), 0 6px 24px rgba(190,120,255,.2), 0 0 40px rgba(190,120,255,.1); }
  50%{ box-shadow: 0 0 0 6px rgba(190,120,255,.3), 0 8px 32px rgba(190,120,255,.25), 0 0 50px rgba(190,120,255,.15); }
}

/* Nicer dark select */
select{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px;
  background-image:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 10l5 5 5-5' stroke='rgba(242,244,247,0.78)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat;
  background-position: 0 0, right 14px center;
  background-size: auto, 18px 18px;
}

/* Fully custom select */
.native-select{
  display: none !important;
}
.cselect{
  position: relative;
}
.cselect__btn{
  width: 100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.35);
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
  letter-spacing: .1px;
  box-shadow: none;
  transition: border-color .15s ease, box-shadow .15s ease, transform .05s ease, background-color .15s ease;
}
.cselect__btn:hover{
  border-color: rgba(190,120,255,.35);
  background: rgba(0,0,0,.45);
}
.cselect__btn:active{
  transform: translateY(1px);
}
.cselect__btn:focus{
  outline: none;
  border-color: rgba(255,255,255,.28);
  box-shadow: 0 0 0 4px rgba(255,255,255,.10);
}
.cselect__value{
  overflow:hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cselect__chev{
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  opacity: .9;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 10l5 5 5-5' stroke='rgba(242,244,247,0.78)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/18px 18px;
  transition: transform .15s ease;
}
.cselect.is-open .cselect__chev{
  transform: rotate(180deg);
}
.cselect__panel{
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 2000;
  max-height: 280px;
  overflow: auto;
  border-radius: 14px;
  border: 1px solid rgba(190,120,255,.25);
  background: rgba(5,6,10,.95);
  backdrop-filter: blur(12px);
  box-shadow:
    0 26px 70px rgba(0,0,0,.78),
    0 0 40px rgba(190,120,255,.15);
  padding: 6px;
  display: none;
}
.cselect.is-open .cselect__panel{
  display: block;
}
.cselect__opt{
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: rgba(242,244,247,.90);
  font-weight: 800;
  padding: 10px 10px;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color .12s ease, transform .05s ease;
}
.cselect__opt:hover{
  background: rgba(190,120,255,.15);
}
.cselect__opt:active{
  transform: translateY(1px);
}
.cselect__opt.is-selected{
  background: rgba(190,120,255,.20);
  border: 1px solid rgba(190,120,255,.30);
}
select:hover{
  border-color: rgba(255,255,255,.22);
}
select:disabled{
  opacity: .6;
  cursor:not-allowed;
}
select option{
  background: #0B0D10;
  color: var(--text);
}
textarea{ resize: vertical; min-height: 90px; }
input::placeholder, textarea::placeholder{ color: rgba(242,244,247,.45); }
input:focus, textarea:focus, select:focus{
  border-color: rgba(255,255,255,.28);
  box-shadow: 0 0 0 4px rgba(255,255,255,.10);
}

.btn{
  appearance:none;
  border:none;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 16px 22px;
  border-radius: 16px;
  font-weight: 1000;
  letter-spacing:.3px;
  color: rgba(255,255,255,1);
  background: linear-gradient(135deg, rgba(190,120,255,.95), rgba(255,80,220,.85), rgba(190,120,255,.95));
  background-size: 200% 100%;
  border: 2px solid rgba(255,255,255,.25);
  box-shadow: 0 12px 48px rgba(0,0,0,.6), 0 0 60px rgba(190,120,255,.3), 0 0 100px rgba(255,80,220,.15), inset 0 1px 0 rgba(255,255,255,.3), inset 0 -1px 0 rgba(255,255,255,.1);
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  user-select:none;
  text-decoration: none;
  position: relative;
  overflow: visible;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
  animation: buttonGradient 5s ease-in-out infinite;
  z-index: 1;
}
.btn > *{
  position: relative;
  z-index: 10;
  pointer-events: none;
}
.btn{
  pointer-events: auto !important;
}
@keyframes buttonGradient{
  0%, 100%{ background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
}
.btn::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.3), rgba(255,255,255,.1), rgba(255,255,255,.3));
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity .3s ease;
  animation: buttonShine 3s ease-in-out infinite;
  pointer-events: none !important;
  z-index: 1;
}
@keyframes buttonShine{
  0%, 100%{ background-position: -100% 0; }
  50%{ background-position: 200% 0; }
}
.btn::after{
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(190,120,255,.6), rgba(255,80,220,.5));
  border-radius: 16px;
  opacity: 0;
  z-index: -1;
  filter: blur(12px);
  transition: opacity .3s ease;
  pointer-events: none;
}
.btn:hover{ 
  transform: translateY(-4px) scale(1.05);
  filter: brightness(1.2) saturate(1.1);
  border-color: rgba(255,255,255,.4);
  box-shadow: 0 20px 80px rgba(0,0,0,.8), 0 0 100px rgba(190,120,255,.5), 0 0 150px rgba(255,80,220,.25), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.2);
  animation: buttonGradient 2s ease-in-out infinite;
}
.btn:hover::before{
  opacity: 1;
  animation: buttonShine 1s ease-in-out infinite;
}
.btn:hover::after{
  opacity: 1;
  filter: blur(16px);
}
.btn:active{ 
  transform: translateY(0) scale(1);
  filter: brightness(.95);
}
.btn:disabled{ opacity: .5; cursor:not-allowed; transform:none; filter:none; }

.btn--ghost{
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: none;
}
.btn--ghost:hover{
  border-color: rgba(190,120,255,.35);
  background: rgba(0,0,0,.35);
}
.btn--danger{
  background: linear-gradient(135deg, rgba(255,80,100,.75), rgba(255,50,70,.55));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 16px 40px rgba(0,0,0,.45), 0 0 30px rgba(255,80,100,.12);
}
.btn--success{
  background: linear-gradient(135deg, rgba(80,255,120,.75), rgba(50,255,90,.55));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 16px 40px rgba(0,0,0,.45), 0 0 30px rgba(80,255,120,.12);
}
.btn--sm{
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 13px;
}
.btn--full{ width:100%; }

.divider{
  height:1px;
  background: rgba(255,255,255,.10);
  margin: 14px 0;
}

.alert{
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.30);
  color: var(--muted);
  box-shadow: var(--shadow2);
  line-height: 1.4;
}
.alert--success{
  border-color: rgba(80,255,120,.35);
  background: rgba(0,0,0,.35);
  color: rgba(242,244,247,.92);
}
.alert--error{
  border-color: rgba(255,80,100,.35);
  background: rgba(0,0,0,.35);
  color: rgba(242,244,247,.92);
}
.alert--info{
  border-color: rgba(190,120,255,.35);
  background: rgba(0,0,0,.35);
  color: rgba(242,244,247,.92);
}
.alert--warn{
  border-color: rgba(255,200,80,.35);
  background: rgba(0,0,0,.35);
  color: rgba(242,244,247,.92);
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  border: 1px solid rgba(190,120,255,.25);
  background: rgba(0,0,0,.35);
  color: rgba(242,244,247,.92);
}
.badge--success{ border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.06); }
.badge--danger{ border-color: rgba(255,255,255,.20); background: rgba(255,255,255,.08); }
.badge--warn{ border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.07); }

.table-wrap{
  overflow:auto;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.12);
}
table{
  width:100%;
  border-collapse: collapse;
  min-width: 860px;
}
/* Keep license keys readable: no wrapping inside code, allow horizontal scroll on table */
th:first-child, td:first-child{
  min-width: 340px;
}
th, td{
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-align:left;
  vertical-align: top;
  font-size: 13px;
  color: rgba(242,244,247,.88);
}
th{
  position: sticky;
  top: 0;
  background: rgba(8,10,14,.75);
  backdrop-filter: blur(10px);
  font-size: 12px;
  letter-spacing: .25px;
  text-transform: uppercase;
  color: rgba(242,244,247,.72);
}
tr:hover td{
  background: rgba(255,255,255,.03);
}
code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  color: rgba(242,244,247,.92);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  padding: 3px 6px;
  border-radius: 8px;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

code.copyable{
  cursor: pointer;
  user-select: none;
  transition: transform .08s ease, border-color .15s ease, background-color .15s ease;
}
code.copyable:hover{
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  transform: translateY(-1px);
}
code.copyable:active{
  transform: translateY(0);
}

.toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  pointer-events: none;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  color: rgba(242,244,247,.92);
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 16px 40px rgba(0,0,0,.55);
  transition: opacity .15s ease, transform .15s ease;
  z-index: 9999;
}
.toast.toast--show{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.notice{
  position: fixed;
  left: 50%;
  top: 14px;
  transform: translateX(-50%) translateY(-10px);
  opacity: 0;
  pointer-events: none;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  color: rgba(242,244,247,.92);
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 16px 40px rgba(0,0,0,.55);
  transition: opacity .15s ease, transform .15s ease;
  z-index: 10000;
}
.notice.notice--show{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Modal (custom confirm) */
.modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 20000;
}
.modal.is-open{
  display: block;
}
.modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(12px) saturate(150%);
  animation: backdropFadeIn .3s ease;
}
@keyframes backdropFadeIn{
  from{ opacity: 0; }
  to{ opacity: 1; }
}
.modal__dialog{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(520px, calc(100% - 24px));
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(0,0,0,.85), rgba(0,0,0,.75));
  backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 32px 100px rgba(0,0,0,.85), 0 0 80px rgba(190,120,255,.2), inset 0 1px 0 rgba(255,255,255,.1);
  padding: 20px;
  animation: modalAppear .3s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes modalAppear{
  0%{
    opacity: 0;
    transform: translate(-50%, -48%) scale(.9) rotateX(5deg);
    filter: blur(10px);
  }
  50%{
    transform: translate(-50%, -51%) scale(1.02) rotateX(-2deg);
  }
  100%{
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotateX(0deg);
    filter: blur(0);
  }
}
.modal__head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.modal__title{
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 15px;
  color: rgba(242,244,247,.92);
}
.modal__x{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(242,244,247,.92);
  cursor: pointer;
}
.modal__x:hover{
  background: rgba(255,255,255,.08);
}
.modal__body{
  color: rgba(242,244,247,.72);
  font-size: 13px;
  line-height: 1.5;
  padding: 4px 0 10px;
}
.modal__body::-webkit-scrollbar{
  width: 10px;
}
.modal__body::-webkit-scrollbar-track{
  background: rgba(0,0,0,.3);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.05);
}
.modal__body::-webkit-scrollbar-thumb{
  background: linear-gradient(180deg, rgba(190,120,255,.6), rgba(255,80,220,.5));
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: inset 0 0 6px rgba(190,120,255,.3);
  transition: all .3s ease;
}
.modal__body::-webkit-scrollbar-thumb:hover{
  background: linear-gradient(180deg, rgba(190,120,255,.8), rgba(255,80,220,.7));
  box-shadow: inset 0 0 10px rgba(190,120,255,.5), 0 0 12px rgba(190,120,255,.3);
}
.modal__actions{
  display:flex;
  justify-content:flex-end;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,.10);
}

.hint{
  color: var(--muted2);
  font-size: 13px;
  line-height: 1.45;
}

.login-shell{
  width: min(440px, 100%);
}

.login-card{
  padding: 22px;
}

.login-head{
  display:flex;
  flex-direction:column;
  gap: 6px;
  margin-bottom: 14px;
}
.login-title{
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .2px;
  margin:0;
}
.login-subtitle{
  color: var(--muted2);
  font-size: 13px;
  margin:0;
}

.footer-note{
  margin-top: 14px;
  color: rgba(242,244,247,.45);
  font-size: 12px;
}

@media (prefers-reduced-motion: reduce){
  *{ transition: none !important; }
}

/* Payment Modal */
.payment-modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 20000;
}
.payment-modal.is-open{
  display: block;
}
.payment-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(12px) saturate(150%);
  animation: backdropFadeIn .3s ease;
}
.payment-modal__dialog{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(420px, calc(100% - 24px));
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(0,0,0,.85), rgba(0,0,0,.75));
  backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 32px 100px rgba(0,0,0,.85), 0 0 80px rgba(190,120,255,.2), inset 0 1px 0 rgba(255,255,255,.1);
  padding: 24px;
  animation: modalAppear .3s cubic-bezier(0.4, 0, 0.2, 1);
}
.payment-modal__head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}
.payment-modal__title{
  font-weight: 1000;
  letter-spacing: -.5px;
  font-size: 20px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(90deg, rgba(255,255,255,.98), rgba(190,120,255,.90), rgba(255,80,220,.85));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.payment-modal__close{
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(242,244,247,.92);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background .15s ease;
}
.payment-modal__close:hover{
  background: rgba(255,255,255,.08);
}
.payment-modal__body{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.payment-modal__text{
  margin: 0;
  color: rgba(242,244,247,.75);
  font-weight: 800;
  font-size: 14px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.payment-options{
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.payment-option{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(0,0,0,.3);
  border: 1px solid rgba(255,255,255,.10);
  cursor: pointer;
  transition: all .2s ease;
  position: relative;
}
.payment-option:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
}
.payment-option input[type="radio"]{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.payment-option__check{
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.2);
  position: relative;
  flex-shrink: 0;
  transition: all .2s ease;
}
.payment-option input[type="radio"]:checked + .payment-option__check{
  border-color: rgba(255,80,220,.90);
  background: rgba(255,80,220,.20);
}
.payment-option input[type="radio"]:checked + .payment-option__check::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,80,220,1), rgba(190,120,255,1));
  box-shadow: 0 0 8px rgba(255,80,220,.6);
}
.payment-option input[type="radio"]:checked ~ .payment-option__text{
  color: rgba(255,80,220,.95);
  font-weight: 900;
}
.payment-option__text{
  color: rgba(242,244,247,.75);
  font-weight: 800;
  font-size: 14px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  transition: color .2s ease, font-weight .2s ease;
}
.payment-modal__btn{
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: none;
  background: rgba(255,255,255,.98);
  color: rgba(0,0,0,.95);
  font-weight: 1000;
  font-size: 14px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  letter-spacing: -.2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transition: transform .08s ease, box-shadow .15s ease;
}
.payment-modal__btn:hover{
  filter: brightness(1.03);
  transform: translateY(-1px);
}
.payment-modal__btn:active{
  transform: translateY(0);
  filter: brightness(.99);
}


