:root{
  --bg:#130905;
  --bg2:#1f0d05;
  --bg3:#2b1004;
  --text:#ffffff;
  --muted:#f0e6d8;
  --gold:#ffd400;
  --orange:#ff9a1f;
  --hot:#ff2f6d;
  --warm:#ffb347;
  --card:rgba(255,255,255,0.065);
  --border:rgba(255,255,255,0.11);
  --shadow:0 22px 60px rgba(0,0,0,0.38);
  --radius:24px;
  --max:1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  padding-top:96px;
  font-family:Arial, Helvetica, sans-serif;
  font-size:13px;
  color:var(--text);
  background:
    radial-gradient(circle at 18% 10%, rgba(255,212,0,.16), transparent 26%),
    radial-gradient(circle at 82% 8%, rgba(255,154,31,.13), transparent 24%),
    radial-gradient(circle at 50% 105%, rgba(255,47,109,.12), transparent 30%),
    linear-gradient(145deg, var(--bg), var(--bg2), var(--bg3));
  min-height:100vh;
  overflow-x:hidden;
}

img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button,input{font-family:inherit}

.container{
  width:min(100% - 16px, var(--max));
  margin-inline:auto;
}

.bg-grid{
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.11;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size:28px 28px;
  -webkit-mask-image:linear-gradient(to bottom, rgba(0,0,0,.95), rgba(0,0,0,.45));
  mask-image:linear-gradient(to bottom, rgba(0,0,0,.95), rgba(0,0,0,.45));
}

.bg-orb{
  position:fixed;
  border-radius:999px;
  filter:blur(76px);
  pointer-events:none;
  opacity:.48;
}

.orb-1{
  width:260px;
  height:260px;
  background:rgba(255,180,0,.28);
  top:28px;
  left:-70px;
}

.orb-2{
  width:290px;
  height:290px;
  background:rgba(255,90,0,.22);
  right:-82px;
  top:214px;
}

.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  background:linear-gradient(180deg, rgba(19,9,5,.82), rgba(19,9,5,.62));
  backdrop-filter:blur(22px);
  -webkit-backdrop-filter:blur(22px);
  border-bottom:1px solid rgba(255,255,255,.10);
  box-shadow:0 16px 42px rgba(0,0,0,.30);
}

.elite-nav::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,212,0,.58), rgba(255,154,31,.66), rgba(255,47,109,.52), transparent);
  pointer-events:none;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  min-height:96px;
}

.brand-link{
  display:inline-flex;
  align-items:center;
  flex:0 0 auto;
}

.brand-logo{
  height:84px;
  width:auto;
}

.elite-logo{
  filter:drop-shadow(0 8px 26px rgba(255,180,0,.26)) drop-shadow(0 3px 14px rgba(255,47,109,.15));
  transition:transform .22s ease, filter .22s ease;
}

.brand-link:hover .elite-logo{
  transform:translateY(-1px) scale(1.02);
  filter:drop-shadow(0 12px 34px rgba(255,180,0,.34)) drop-shadow(0 5px 18px rgba(255,47,109,.22));
}

.elite-nav-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:7px;
  flex-wrap:wrap;
}

.btn{
  position:relative;
  overflow:hidden;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:none;
  border-radius:13px;
  padding:9px 13px;
  font-weight:900;
  font-size:.76rem;
  line-height:1;
  cursor:pointer;
  transition:transform .22s ease, box-shadow .22s ease, opacity .18s ease, filter .22s ease, border-color .22s ease;
}

.btn:hover{
  transform:translateY(-2px);
  filter:saturate(1.08);
}

.btn:active{
  transform:translateY(0) scale(.99);
}

.btn::after{
  content:"";
  position:absolute;
  top:0;
  left:-125%;
  width:60%;
  height:100%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  transform:skewX(-18deg);
  transition:left .55s ease;
  pointer-events:none;
}

.btn:hover::after{left:132%}

.btn-primary{
  color:#1b1007;
  background:linear-gradient(90deg, var(--gold), var(--orange), var(--hot));
  box-shadow:0 12px 34px rgba(255,140,0,.28);
}

.btn-secondary{
  color:#fff;
  background:rgba(255,255,255,.085);
  border:1px solid rgba(255,255,255,.12);
}

.btn-secondary:hover{
  border-color:rgba(255,212,0,.25);
  box-shadow:0 12px 28px rgba(0,0,0,.18);
}

.nav-btn{
  min-width:98px;
  min-height:38px;
  border-radius:13px;
  font-size:.7rem;
}

.full{width:100%}

.hero{padding:26px 0 12px}
.hero-container{max-width:1100px}

.hero-inner-copy{
  text-align:center;
  max-width:860px;
  margin:0 auto 24px;
}

.eyebrow{
  display:inline-block;
  margin:0 0 7px;
  font-size:9px;
  font-weight:900;
  letter-spacing:.13em;
  text-transform:uppercase;
  color:#fff;
  padding:6px 10px;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(255,255,255,.13), rgba(255,255,255,.045));
  border:1px solid rgba(255,255,255,.12);
}

.hero h1,
.section-head h2{
  margin:0 0 6px;
  line-height:1.02;
  letter-spacing:-1px;
}

.hero h1{
  font-size:clamp(1.65rem, 3.4vw, 2.5rem);
  background:linear-gradient(90deg, #ffffff, #ffe7b1 50%, #ffffff);
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero-text,
.section-head p{
  color:var(--muted);
  font-size:.86rem;
  line-height:1.4;
}

.hero-text{
  max-width:760px;
  margin:0 auto;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:9px;
  margin-top:14px;
}

.card-glow,
.hero-card,
.feature-card,
.price-card,
.qr-panel,
.qr-preview{
  position:relative;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  backdrop-filter:blur(14px);
}

.card-glow::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:inherit;
  padding:1px;
  background:linear-gradient(135deg, rgba(255,212,0,.24), rgba(255,154,31,.20), rgba(255,47,109,.15), rgba(255,255,255,.08));
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
  opacity:.62;
}

.hero-value-wrap{max-width:920px;margin:15px auto 0}

.hero-value-card{
  border-radius:24px;
  overflow:hidden;
  padding:14px 16px 12px;
}

.hero-value-topbar{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:3px;
  background:linear-gradient(90deg, var(--gold), var(--orange), var(--hot));
}

#valueCarouselTrack{position:relative;min-height:88px}

.hero-value-controls{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  margin-top:8px;
  flex-wrap:wrap;
}

.arrow-group,.dot-group{display:flex;gap:8px;align-items:center}
.small-btn{padding:7px 10px;min-height:34px}

.value-slide-label{
  margin:0 0 4px;
  font-size:.7rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-weight:900;
}

.value-slide-label.gold{color:var(--gold)}
.value-slide-label.orange{color:var(--orange)}
.value-slide-label.hot{color:var(--hot)}

.value-slide-title{margin:0 0 4px;font-size:1.02rem}
.value-slide-copy{margin:0;color:var(--muted);max-width:820px;font-size:.8rem;line-height:1.28}

.value-dot{
  width:9px;
  height:9px;
  border-radius:999px;
  border:none;
  background:rgba(255,255,255,.25);
  cursor:pointer;
}

.section{padding:8px 0 14px}
.section-head{text-align:center;max-width:650px;margin:0 auto 12px}
.section-head h2{font-size:clamp(1.25rem, 3vw, 1.82rem)}

.premium-generator-section{padding-top:0}

.premium-generator-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 240px;
  gap:10px;
  align-items:start;
}

.premium-builder-panel,
.premium-preview-panel{
  padding:10px;
  border-radius:20px;
  overflow:visible !important;
}

.builder-section{
  margin:0 0 9px;
  padding:11px;
  border-radius:17px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.047), rgba(255,255,255,.025));
  box-shadow:0 8px 20px rgba(0,0,0,.09);
  transition:border-color .26s ease, box-shadow .26s ease, transform .26s ease;
}

.builder-section:hover{
  border-color:rgba(255,212,0,.18);
  box-shadow:0 14px 32px rgba(0,0,0,.16), 0 0 0 1px rgba(255,212,0,.045) inset;
}

.builder-section-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  margin-bottom:8px;
}

.builder-section-title{display:grid;gap:2px;min-width:0}
.builder-section-title strong{font-size:.82rem;color:#fff;line-height:1.08}
.builder-section-title span{color:var(--muted);font-size:.69rem;line-height:1.2}

.builder-section-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:23px;
  padding:4px 8px;
  border-radius:999px;
  font-size:.6rem;
  font-weight:900;
  letter-spacing:.04em;
  color:#fff;
  background:rgba(255,255,255,.075);
  border:1px solid rgba(255,255,255,.09);
  text-transform:uppercase;
  white-space:nowrap;
  flex:0 0 auto;
}

.builder-section-pill.is-highlight{
  color:#1b1007;
  background:linear-gradient(90deg, var(--gold), var(--orange));
  border-color:transparent;
}

.lp-input{
  width:100%;
  padding:8px 10px;
  border-radius:11px;
  border:1px solid rgba(255,255,255,.13);
  background:rgba(255,255,255,.075);
  color:#fff;
  font-size:.75rem;
  outline:none;
}

.lp-input::placeholder{color:rgba(255,255,255,.45)}
.lp-input:focus{border-color:rgba(255,180,0,.68);box-shadow:0 0 0 3px rgba(255,180,0,.14)}

.builder-utility-grid{display:grid;grid-template-columns:1fr 1fr;gap:9px}
.builder-mini-stack{display:grid;gap:8px}
.design-studio{display:flex;flex-direction:column;gap:6px}

.design-group{
  padding:8px;
  border-radius:13px;
  background:linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.09);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
}

.design-group-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:6px;
  margin-bottom:6px;
}

.design-group h4,.design-group-head h4{margin:0;font-size:.7rem;font-weight:900;color:#fff}
.design-group-head span{color:var(--muted);font-size:.58rem;line-height:1;text-align:right;opacity:.9}
.design-split{display:grid;grid-template-columns:1fr 1fr;gap:6px}

.four-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:5px}
.three-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:5px}
.two-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:6px}
.style-tile-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:5px}
.style-tile-grid-small{grid-template-columns:repeat(3,minmax(0,1fr))}

.style-tile{
  position:relative;
  isolation:isolate;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
  min-height:60px;
  padding:7px 6px;
  border-radius:11px;
  border:1px solid rgba(255,255,255,.11);
  background:linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.03));
  color:#fff;
  cursor:pointer;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04), 0 7px 16px rgba(0,0,0,.12);
  transform-style:preserve-3d;
  will-change:transform, box-shadow;
  overflow:hidden;
  transition:transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.style-tile::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  padding:1px;
  background:linear-gradient(135deg, rgba(255,212,0,0), rgba(255,212,0,.32), rgba(255,47,109,.18));
  opacity:0;
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
  transition:opacity .24s ease;
}

.style-tile::after{
  content:"";
  position:absolute;
  inset:-45%;
  background:radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.16), transparent 38%);
  opacity:0;
  transition:opacity .22s ease;
  pointer-events:none;
  z-index:-1;
}

.style-tile:hover::before,.style-tile.active::before{opacity:1}
.style-tile:hover::after{opacity:1}

.style-tile:hover{
  border-color:rgba(255,212,0,.34);
  box-shadow:0 12px 30px rgba(0,0,0,.20), 0 0 0 1px rgba(255,212,0,.08) inset;
}

.style-tile.active{
  color:#1b1007;
  border-color:rgba(255,212,0,.58) !important;
  background:linear-gradient(180deg, rgba(255,212,0,.20), rgba(255,154,31,.13));
  box-shadow:0 12px 28px rgba(255,154,31,.16), 0 0 0 1px rgba(255,212,0,.20) inset;
}

.style-tile.just-selected,.style-tile.active .tile-preview{animation:softPulse 1.8s ease-in-out infinite}
.style-tile strong{position:relative;z-index:4;font-size:.58rem;line-height:1;text-align:center;font-weight:900}

.style-tile .tile-preview,
.style-tile .tile-preview.hp-icon{
  width:44px !important;
  height:44px !important;
  min-width:44px !important;
  min-height:44px !important;
  display:block !important;
  position:relative !important;
  overflow:hidden !important;
  border-radius:13px !important;
  padding:0 !important;
  border:1px solid rgba(255,255,255,.22) !important;
  background:radial-gradient(circle at 30% 30%, rgba(255,212,0,.42), rgba(255,154,31,.18) 45%, rgba(255,255,255,.05) 100%) !important;
  box-shadow:0 0 14px rgba(255,212,0,.18), inset 0 1px 0 rgba(255,255,255,.20), inset 0 -8px 16px rgba(0,0,0,.18) !important;
  z-index:3 !important;
  transition:transform .28s cubic-bezier(.2,.8,.2,1), filter .28s ease;
}

.style-tile:hover .tile-preview{transform:translateY(-1px) scale(1.08);filter:drop-shadow(0 8px 16px rgba(255,154,31,.22))}

.style-tile.active .tile-preview,
.style-tile.active .tile-preview.hp-icon{
  background:radial-gradient(circle at 30% 30%, rgba(255,255,255,.95), rgba(255,212,0,.90) 38%, rgba(255,154,31,.58) 100%) !important;
  border-color:rgba(255,212,0,.85) !important;
  box-shadow:0 0 18px rgba(255,212,0,.70), 0 0 32px rgba(255,154,31,.36), inset 0 1px 0 rgba(255,255,255,.45) !important;
}

.tile-preview.hp-icon > i,
.tile-preview.theme-icon > i,
.tile-preview.mini-qr > i,
.tile-preview.eye-icon > i,
.tile-preview.premium-icon > i,
.tile-preview.center-dots > i{display:none !important}

.theme-sunset-pro::before,.theme-royal-pro::before,.theme-mint-pro::before,.theme-mono-pro::before{
  content:"";
  position:absolute;
  inset:8px;
  border-radius:5px;
  background:
    linear-gradient(var(--c1) 0 0) left top/11px 11px no-repeat,
    linear-gradient(var(--c2) 0 0) right top/11px 11px no-repeat,
    linear-gradient(var(--c3) 0 0) left bottom/11px 11px no-repeat,
    linear-gradient(var(--c4) 0 0) right bottom/11px 11px no-repeat;
}
.theme-sunset-pro{--c1:#111111;--c2:#ff9a1f;--c3:#ffd400;--c4:#ffffff}
.theme-royal-pro{--c1:#1c2450;--c2:#4b6bff;--c3:#d7e3ff;--c4:#ffffff}
.theme-mint-pro{--c1:#10382f;--c2:#25D366;--c3:#9ff1c0;--c4:#ffffff}
.theme-mono-pro{--c1:#111111;--c2:#666666;--c3:#d7d7d7;--c4:#ffffff}

.tile-preview.mini-qr::before{content:"";position:absolute;inset:7px}
.tile-preview.mini-qr.rounded::before,.tile-preview.mini-qr.dots::before{
  background:
    radial-gradient(circle at 3px 3px, #fff7c7 0 2.2px, transparent 2.6px),radial-gradient(circle at 14px 3px, #fff7c7 0 2.2px, transparent 2.6px),radial-gradient(circle at 25px 3px, #fff7c7 0 2.2px, transparent 2.6px),
    radial-gradient(circle at 3px 14px, #fff7c7 0 2.2px, transparent 2.6px),radial-gradient(circle at 14px 14px, #fff7c7 0 2.2px, transparent 2.6px),radial-gradient(circle at 25px 14px, #fff7c7 0 2.2px, transparent 2.6px),
    radial-gradient(circle at 3px 25px, #fff7c7 0 2.2px, transparent 2.6px),radial-gradient(circle at 14px 25px, #fff7c7 0 2.2px, transparent 2.6px),radial-gradient(circle at 25px 25px, #fff7c7 0 2.2px, transparent 2.6px);
}
.tile-preview.mini-qr.rounded::before{filter:drop-shadow(0 0 2px rgba(255,212,0,.16))}
.tile-preview.mini-qr.square::before{
  background:
    linear-gradient(#fff7c7 0 0) 0 0/6px 6px no-repeat,linear-gradient(#fff7c7 0 0) 11px 0/6px 6px no-repeat,linear-gradient(#fff7c7 0 0) 22px 0/6px 6px no-repeat,
    linear-gradient(#fff7c7 0 0) 0 11px/6px 6px no-repeat,linear-gradient(#fff7c7 0 0) 11px 11px/6px 6px no-repeat,linear-gradient(#fff7c7 0 0) 22px 11px/6px 6px no-repeat,
    linear-gradient(#fff7c7 0 0) 0 22px/6px 6px no-repeat,linear-gradient(#fff7c7 0 0) 11px 22px/6px 6px no-repeat,linear-gradient(#fff7c7 0 0) 22px 22px/6px 6px no-repeat;
}
.tile-preview.mini-qr.classy::before{
  background:
    radial-gradient(circle at 3px 3px, #fff7c7 0 2.2px, transparent 2.5px),linear-gradient(#fff7c7 0 0) 11px 0/6px 6px no-repeat,radial-gradient(circle at 25px 3px, #fff7c7 0 2.2px, transparent 2.5px),
    linear-gradient(#fff7c7 0 0) 0 11px/6px 6px no-repeat,radial-gradient(circle at 14px 14px, #fff7c7 0 2.2px, transparent 2.5px),linear-gradient(#fff7c7 0 0) 22px 11px/6px 6px no-repeat,
    radial-gradient(circle at 3px 25px, #fff7c7 0 2.2px, transparent 2.5px),linear-gradient(#fff7c7 0 0) 11px 22px/6px 6px no-repeat,radial-gradient(circle at 25px 25px, #fff7c7 0 2.2px, transparent 2.5px);
}

.tile-preview.eye-icon::before{content:"";position:absolute;inset:10px;border:5px solid #fff7c7;box-sizing:border-box}
.tile-preview.eye-soft::before{border-radius:8px}
.tile-preview.eye-square::before{border-radius:1px}
.tile-preview.eye-round::before{border-radius:999px}
.tile-preview.eye-classy::before{border-radius:10px 3px 10px 3px}
.tile-preview.eye-dots::before{border:none;inset:8px;background:radial-gradient(circle, #fff7c7 45%, transparent 48%) 0 0/8px 8px}

.tile-preview.center-icon::before{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:18px;
  height:18px;
  transform:translate(-50%, -50%);
  background:#fff7c7;
  box-shadow:0 0 0 4px rgba(255,212,0,.18), 0 0 16px rgba(255,154,31,.18);
}
.tile-preview.center-round::before{border-radius:999px}
.tile-preview.center-square::before{border-radius:1px}
.tile-preview.center-soft::before{border-radius:6px}
.tile-preview.center-classy::before{border-radius:40% 12% 40% 12%}
.tile-preview.center-dots::before{
  content:"" !important;
  display:block !important;
  position:absolute !important;
  left:50% !important;
  top:50% !important;
  transform:translate(-50%, -50%) !important;
  width:26px !important;
  height:26px !important;
  background:
    radial-gradient(circle at 5px 5px, #fff7c7 0 2.3px, transparent 2.7px),radial-gradient(circle at 13px 5px, #fff7c7 0 2.3px, transparent 2.7px),radial-gradient(circle at 21px 5px, #fff7c7 0 2.3px, transparent 2.7px),
    radial-gradient(circle at 5px 13px, #fff7c7 0 2.3px, transparent 2.7px),radial-gradient(circle at 13px 13px, #fff7c7 0 2.3px, transparent 2.7px),radial-gradient(circle at 21px 13px, #fff7c7 0 2.3px, transparent 2.7px),
    radial-gradient(circle at 5px 21px, #fff7c7 0 2.3px, transparent 2.7px),radial-gradient(circle at 13px 21px, #fff7c7 0 2.3px, transparent 2.7px),radial-gradient(circle at 21px 21px, #fff7c7 0 2.3px, transparent 2.7px) !important;
  background-repeat:no-repeat !important;
  box-shadow:none !important;
  border-radius:0 !important;
}

.tile-preview.size-icon::before,.tile-preview.size-small::before,.tile-preview.size-medium::before,.tile-preview.size-large::before{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
  border:2px solid #ffd400;
  background:rgba(255,247,199,.95);
  box-shadow:0 0 14px rgba(255,212,0,.28);
}
.tile-preview.size-small::before{width:13px;height:13px;border-radius:3px}
.tile-preview.size-medium::before{width:20px;height:20px;border-radius:4px}
.tile-preview.size-large::before{width:27px;height:27px;border-radius:5px}

.premium-preset-tile{position:relative;min-height:74px}
.premium-preset-tile::before{
  content:"";
  position:absolute;
  top:-40%;
  left:-85%;
  width:55%;
  height:180%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.24), transparent);
  transform:rotate(22deg);
  opacity:.7;
  animation:premiumSweep 3.8s ease-in-out infinite;
  pointer-events:none;
}
.premium-preset-tile.active,.premium-preset-tile:focus-visible{animation:premiumBreath 2.4s ease-in-out infinite}

.premium-badge{
  position:absolute;
  top:4px;
  right:4px;
  font-size:.42rem;
  font-weight:900;
  color:#1b1007;
  background:linear-gradient(90deg, #ffd400, #ff9a1f);
  padding:2px 4px;
  border-radius:999px;
  z-index:4;
  animation:badgeGlow 2.7s ease-in-out infinite;
}

.premium-preset-tile:first-child .premium-badge{
  font-size:0;
  min-width:42px;
  text-align:center;
}
.premium-preset-tile:first-child .premium-badge::after{
  content:"SIGNATURE";
  font-size:.42rem;
  font-weight:1000;
}
.premium-preset-tile:first-child strong{
  font-size:0;
}
.premium-preset-tile:first-child strong::after{
  content:"HivePop Signature";
  font-size:.58rem;
  line-height:1.05;
}

.tile-preview.premium-icon::before{content:"";position:absolute;inset:7px}
.tile-preview.premium-honey{
  background:
    radial-gradient(circle at 30% 20%, rgba(255,248,194,.95), rgba(255,212,0,.50) 34%, rgba(83,45,9,.34) 100%),
    linear-gradient(145deg, #211003, #4b2b08 48%, #140a02) !important;
  border-color:rgba(255,216,90,.72) !important;
  box-shadow:0 0 18px rgba(255,212,0,.38), 0 0 36px rgba(216,144,28,.18), inset 0 1px 0 rgba(255,255,255,.28), inset 0 -12px 18px rgba(0,0,0,.28) !important;
}
.tile-preview.premium-honey::before{
  inset:6px;
  background:
    linear-gradient(135deg, #ffe78a, #d8901c) 0 4px/9px 9px no-repeat,
    linear-gradient(135deg, #fff2b5, #ffb52c) 11px 4px/9px 9px no-repeat,
    linear-gradient(135deg, #ffe78a, #d8901c) 22px 4px/9px 9px no-repeat,
    linear-gradient(135deg, #fff2b5, #ffb52c) 5.5px 15px/9px 9px no-repeat,
    linear-gradient(135deg, #ffe78a, #d8901c) 16.5px 15px/9px 9px no-repeat,
    linear-gradient(135deg, #fff2b5, #ffb52c) 27.5px 15px/9px 9px no-repeat,
    linear-gradient(135deg, #ffe78a, #d8901c) 11px 26px/9px 9px no-repeat,
    linear-gradient(135deg, #fff2b5, #ffb52c) 22px 26px/9px 9px no-repeat;
  filter:drop-shadow(0 0 6px rgba(255,212,0,.42));
}
.tile-preview.premium-honey::after{
  content:"";
  position:absolute;
  inset:9px;
  background:radial-gradient(circle at 50% 50%, rgba(255,255,255,.62), transparent 38%);
  opacity:.34;
  mix-blend-mode:screen;
}

.tile-preview.premium-neon::before{
  inset:7px;
  background:
    radial-gradient(circle at 3px 3px, #89ffcb 0 2px, transparent 2.4px),radial-gradient(circle at 14px 3px, #37d8ff 0 2px, transparent 2.4px),radial-gradient(circle at 25px 3px, #89ffcb 0 2px, transparent 2.4px),
    radial-gradient(circle at 3px 14px, #37d8ff 0 2px, transparent 2.4px),radial-gradient(circle at 14px 14px, #89ffcb 0 2px, transparent 2.4px),radial-gradient(circle at 25px 14px, #37d8ff 0 2px, transparent 2.4px),
    radial-gradient(circle at 3px 25px, #89ffcb 0 2px, transparent 2.4px),radial-gradient(circle at 14px 25px, #37d8ff 0 2px, transparent 2.4px),radial-gradient(circle at 25px 25px, #89ffcb 0 2px, transparent 2.4px);
  filter:drop-shadow(0 0 6px rgba(55,216,255,.9));
}
.tile-preview.premium-luxury::before{
  background:
    linear-gradient(#fff4c7 0 0) 0 0/7px 7px no-repeat,linear-gradient(#b8892f 0 0) 11px 0/7px 7px no-repeat,linear-gradient(#fff4c7 0 0) 22px 0/7px 7px no-repeat,
    linear-gradient(#b8892f 0 0) 0 11px/7px 7px no-repeat,linear-gradient(#fff4c7 0 0) 11px 11px/7px 7px no-repeat,linear-gradient(#b8892f 0 0) 22px 22px/7px 7px no-repeat;
}
.style-tile.active .tile-preview::before{filter:brightness(0) saturate(2)}
.style-tile.active .tile-preview.premium-honey::before{filter:drop-shadow(0 0 6px rgba(255,212,0,.42)) brightness(1.05) saturate(1.2) !important}
.style-tile.active .tile-preview.center-dots::before{filter:brightness(0) saturate(2) !important}

.color-row{display:grid;grid-template-columns:repeat(4,1fr);gap:5px}
.color-card{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3px;padding:5px 4px;border-radius:10px;background:rgba(255,255,255,.055);border:1px solid rgba(255,255,255,.09);text-align:center}
.color-card span{font-size:.45rem;font-weight:900;color:#fff;line-height:1}
.compact-color{width:24px;height:16px;border:none;padding:0;background:transparent;cursor:pointer}
.compact-color::-webkit-color-swatch-wrapper{padding:0}
.compact-color::-webkit-color-swatch{border:none;border-radius:5px}

.control-card{padding:8px;border-radius:11px;background:rgba(255,255,255,.055);border:1px solid rgba(255,255,255,.09)}
.control-card-title{font-weight:900;color:#fff;margin-bottom:4px;font-size:.6rem}
.control-card input{width:100%}
.control-card-value{margin-top:4px;font-size:.6rem;color:var(--muted)}

.builder-note{
  position:relative;
  overflow:hidden;
  margin-top:8px;
  padding:9px 10px;
  border-radius:12px;
  border:1px solid rgba(255,212,0,.18);
  background:linear-gradient(135deg, rgba(255,212,0,.09), rgba(255,154,31,.08), rgba(255,255,255,.04));
  color:rgba(255,255,255,.78);
  font-size:.69rem;
  line-height:1.26;
  display:flex;
  gap:7px;
  align-items:flex-start;
}
.builder-note::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);transform:translateX(-120%);animation:noteSweep 5.8s ease-in-out infinite;pointer-events:none}

.effect-stack{display:grid;grid-template-columns:1fr;gap:6px}
.effect-inline-row,.effect-basic-row{display:flex;align-items:center;gap:8px;padding:8px;border-radius:11px;background:rgba(255,255,255,.055);border:1px solid rgba(255,255,255,.09)}
.effect-inline-check input{width:15px;height:15px;accent-color:#ff9a1f}
.effect-inline-copy{flex:1;min-width:0}
.effect-title{font-weight:900;color:#fff;margin-bottom:2px;font-size:.6rem}
.effect-copy{font-size:.57rem;color:var(--muted);line-height:1.12}
.inline-gradient-color{width:29px;height:25px;border-radius:8px;border:1px solid rgba(255,255,255,.18);overflow:hidden;cursor:pointer;transition:transform .2s ease, box-shadow .2s ease}
.inline-gradient-color:hover{transform:translateY(-1px) scale(1.03);box-shadow:0 8px 18px rgba(0,0,0,.18), 0 0 0 1px rgba(255,212,0,.10) inset}
.inline-gradient-fill{width:100%;height:100%}
.inline-gradient-color input{position:absolute;opacity:0;pointer-events:none}

.upload-wrap{display:flex;flex-direction:column;gap:5px}
.upload-btn{width:max-content;min-width:92px}
.upload-meta{display:flex;align-items:center;justify-content:space-between;gap:5px;flex-wrap:wrap;padding:6px 7px;border-radius:9px;background:rgba(255,255,255,.055);border:1px solid rgba(255,255,255,.09)}
.upload-file-name{color:var(--muted);font-size:.57rem;word-break:break-word}
.remove-upload-btn,.history-clear-btn{border:none;border-radius:8px;background:rgba(255,255,255,.09);color:#fff;padding:5px 7px;cursor:pointer;font-weight:800;font-size:.53rem}
.mobile-upload-actions{display:none;grid-template-columns:repeat(3,minmax(0,1fr));gap:6px;margin-bottom:6px}
.mobile-upload-btn{min-width:0;padding:8px 6px;font-size:.66rem;border-radius:10px}

.premium-inline-note{
  margin-top:8px;
  padding:10px;
  border-radius:13px;
  background:linear-gradient(135deg, rgba(255,212,0,.11), rgba(255,154,31,.10), rgba(255,47,109,.08));
  border:1px solid rgba(255,154,31,.18);
  color:var(--muted);
  font-size:.75rem;
  line-height:1.24;
  display:grid;
  gap:8px;
}
.premium-unlock-btn{width:100%}
.premium-unlocked .premium-unlock-btn{opacity:.6;pointer-events:none}

.builder-actions{display:grid;grid-template-columns:repeat(3,1fr);gap:7px;margin-top:7px}
.builder-actions .btn{width:100%;min-width:0;padding:9px 7px;font-size:.67rem;border-radius:10px;box-shadow:0 9px 24px rgba(0,0,0,.15)}
.builder-actions .btn:disabled{opacity:.45;cursor:not-allowed;transform:none}

.compact-actions-note{margin:8px 0 0;color:var(--muted);font-size:.7rem;line-height:1.28}
.subtle-divider{height:1px;margin:9px 0 2px;background:linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent)}
.history-section{margin-top:10px}
.history-list{display:grid;gap:6px}
.history-item{display:flex;align-items:center;justify-content:space-between;gap:8px;width:100%;text-align:left;border-radius:10px;padding:7px 8px;background:rgba(255,255,255,.055);border:1px solid rgba(255,255,255,.09);color:#fff;cursor:pointer}
.history-item:hover{border-color:rgba(255,180,0,.28);transform:translateY(-1px)}
.history-item-title{font-size:.59rem;font-weight:900;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.history-item-meta{font-size:.5rem;text-transform:uppercase;color:var(--muted);flex:0 0 auto}
.history-empty{padding:8px;border-radius:10px;background:rgba(255,255,255,.045);border:1px solid rgba(255,255,255,.08);color:var(--muted);font-size:.59rem;text-align:center}

.premium-preview-panel{
  position:sticky;
  top:102px;
  align-self:start;
  height:fit-content;
  max-height:calc(100vh - 124px);
  overflow:auto;
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025)), linear-gradient(135deg, rgba(255,212,0,.06), rgba(255,90,0,.045), rgba(255,47,109,.04));
}
.preview-head{margin-bottom:6px}
.preview-head h3{margin:0 0 2px;font-size:.82rem}
.builder-subtext{margin:0;color:var(--muted);font-size:.64rem;line-height:1.15}
.preview-top-note{margin:0 0 9px;padding:10px;border-radius:13px;background:linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.03));border:1px solid rgba(255,255,255,.10);color:var(--muted);font-size:.71rem;line-height:1.28;text-align:center}
.preview-top-note strong{color:#fff}

.premium-preview-wrap{
  min-height:224px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:13px;
  background:#ffffff;
  border:1px solid rgba(255,255,255,.10);
  padding:9px !important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.75), inset 0 -10px 30px rgba(0,0,0,.04), 0 14px 32px rgba(0,0,0,.13);
  transition:box-shadow .28s ease, transform .28s ease, border-color .28s ease;
}
.premium-preview-wrap:hover{transform:translateY(-1px);box-shadow:0 18px 38px rgba(0,0,0,.20), 0 0 0 1px rgba(255,212,0,.10) inset}
.preview-placeholder{width:100%;min-height:90px;display:flex;align-items:center;justify-content:center;border-radius:10px;background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.05)}
.muted-text{color:var(--muted);text-align:center;margin:0;font-size:.69rem}
#homepageQrWrap{transition:transform .2s ease, opacity .2s ease}
#homepageQrWrap.qr-refreshing{animation:qrRefreshPop .26s ease-out, qrGlowRing .55s ease-out}
#homepageQrWrap canvas,#homepageQrWrap svg{width:min(100%, var(--qr-preview-size, 248px)) !important;max-width:var(--qr-preview-size, 248px) !important;height:auto !important}
.preview-format-note{margin-top:10px;color:var(--muted);font-size:.53rem;text-align:center;letter-spacing:.02em}
.preview-format-note::before{content:"Scan-ready";display:block;margin-bottom:2px;font-size:.48rem;font-weight:900;text-transform:uppercase;letter-spacing:.12em;color:var(--orange)}

.phone-shell,.analytics-preview-shell{display:none}

.pricing-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.price-card{padding:15px;display:flex;flex-direction:column;gap:9px;min-height:100%}
.plan-name{margin:0;font-weight:900;color:#fff;text-transform:uppercase;letter-spacing:.45px;font-size:.62rem}
.price-card h3{margin:0;font-size:1.46rem;line-height:1}
.price-card h3 span{font-size:.72rem;color:var(--muted);font-weight:800}
.plan-copy{margin:0;color:var(--muted);font-size:.74rem;line-height:1.25}
.price-card ul{margin:0;padding-left:16px;color:var(--muted)}
.price-card li{margin:0 0 5px;font-size:.69rem;line-height:1.25}
.featured{transform:translateY(-4px);border-color:rgba(255,212,0,.24)}
.premium{background:linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02)), linear-gradient(135deg, rgba(255,180,0,.12), rgba(255,90,0,.09), rgba(255,47,109,.06))}
.price-card.featured::after,.price-card.premium:last-child::after{
  content:"Most Popular";
  position:absolute;
  top:10px;
  right:10px;
  font-size:.5rem;
  font-weight:1000;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#1b1007;
  background:linear-gradient(90deg, var(--gold), var(--orange));
  padding:4px 6px;
  border-radius:999px;
}
.price-card.featured::after{content:"QR Starter"}

.site-footer{padding:18px 0 22px}
.footer-wrap{display:grid;justify-items:center;gap:7px;text-align:center;color:var(--muted);font-size:.74rem}
.footer-logo{width:min(100%, 230px)}
.footer-ir-logo{width:min(100%, 88px);height:auto}

.tile-ripple{position:absolute;width:14px;height:14px;border-radius:999px;background:radial-gradient(circle, rgba(255,255,255,.42), rgba(255,212,0,.18), transparent 70%);transform:translate(-50%, -50%) scale(0);animation:tileRipple .55s ease-out forwards;pointer-events:none;z-index:3}

@keyframes softPulse{0%,100%{transform:scale(1);filter:drop-shadow(0 4px 10px rgba(0,0,0,.18))}50%{transform:scale(1.08);filter:drop-shadow(0 0 12px rgba(255,212,0,.20))}}
@keyframes premiumSweep{0%,45%{left:-85%}72%,100%{left:140%}}
@keyframes premiumBreath{0%,100%{box-shadow:0 10px 26px rgba(255,154,31,.14),0 0 0 1px rgba(255,212,0,.18) inset}50%{box-shadow:0 14px 34px rgba(255,154,31,.22),0 0 22px rgba(255,212,0,.12),0 0 0 1px rgba(255,212,0,.30) inset}}
@keyframes badgeGlow{0%,100%{filter:drop-shadow(0 0 0 rgba(255,212,0,0))}50%{filter:drop-shadow(0 0 8px rgba(255,212,0,.35))}}
@keyframes tileRipple{to{transform:translate(-50%, -50%) scale(12);opacity:0}}
@keyframes qrRefreshPop{0%{transform:scale(.985);opacity:.82}100%{transform:scale(1);opacity:1}}
@keyframes qrGlowRing{0%{box-shadow:0 0 0 0 rgba(255,212,0,.22)}100%{box-shadow:0 0 0 14px rgba(255,212,0,0)}}
@keyframes noteSweep{0%,65%{transform:translateX(-120%)}100%{transform:translateX(120%)}}

@media (max-width: 1000px){
  .pricing-grid{grid-template-columns:repeat(2,1fr)}
  .premium-generator-grid{grid-template-columns:minmax(0,1fr) 222px}
}

@media (max-width: 900px){
  #homepageQrWrap canvas,#homepageQrWrap svg{width:min(100%, var(--qr-preview-size, 228px)) !important;max-width:var(--qr-preview-size, 228px) !important}
}

@media (max-width: 760px){
  body{padding-top:88px}
  .nav{min-height:88px}
  .brand-logo{height:72px}
  .builder-utility-grid{grid-template-columns:1fr}
  .mobile-upload-actions{display:grid}
  .premium-generator-grid{grid-template-columns:1fr}
  .premium-preview-panel{order:-1;position:static}
  .design-split{grid-template-columns:1fr}
  .four-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .pricing-grid{grid-template-columns:1fr}
  #homepageQrWrap canvas,#homepageQrWrap svg{width:min(100%, var(--qr-preview-size, 212px)) !important;max-width:var(--qr-preview-size, 212px) !important}
}

@media (max-width: 640px){
  body{padding-top:78px;font-size:12.5px}
  .container{width:min(100% - 12px, var(--max))}
  .nav{min-height:78px;gap:6px}
  .brand-logo{height:64px}
  .elite-nav-actions{width:auto;flex-wrap:wrap;justify-content:flex-end;gap:5px}
  .nav-btn{min-width:74px;width:auto;font-size:.62rem;min-height:30px;padding:7px 8px}
  .hero{padding-top:20px}
  .hero-actions{flex-direction:column}
  .hero-actions .btn{width:100%}
  .two-grid{grid-template-columns:1fr}
  .builder-actions{grid-template-columns:1fr}
  .color-row{grid-template-columns:1fr 1fr}
  .btn{width:100%}
}

@media (max-width: 520px){
  .style-tile-grid,.style-tile-grid-small,.three-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .brand-logo{height:58px}
  #homepageQrWrap canvas,#homepageQrWrap svg{width:min(100%, var(--qr-preview-size, 196px)) !important;max-width:var(--qr-preview-size, 196px) !important}
}

@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;scroll-behavior:auto !important;transition-duration:.01ms !important}
}
/* =========================
   AUTH PAGES
========================= */

.auth-page{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px 16px;
}

.auth-card{
  width:100%;
  max-width:460px;
  padding:34px 28px;
  border-radius:28px;
  text-align:center;
}

.auth-logo-link{
  display:inline-flex;
  justify-content:center;
  margin-bottom:16px;
}

.auth-logo{
  width:140px;
  height:auto;
  filter:drop-shadow(0 8px 24px rgba(255,180,0,.18));
}

.auth-card h1{
  margin:0 0 10px;
  font-size:2rem;
  line-height:1.05;
  letter-spacing:-1px;
}

.auth-subtitle{
  margin:0 auto 22px;
  max-width:340px;
  color:var(--muted);
  font-size:.88rem;
  line-height:1.45;
}

.auth-google-btn{
  width:100%;
  min-height:54px;
  border:none;
  border-radius:16px;
  background:#fff;
  color:#111;
  font-weight:900;
  font-size:.92rem;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  cursor:not-allowed;
  opacity:.7;
}

.google-dot{
  width:28px;
  height:28px;
  border-radius:999px;
  background:linear-gradient(135deg,#4285F4,#EA4335,#FBBC05,#34A853);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:900;
  font-size:.85rem;
}

.auth-note{
  margin:10px 0 18px;
  color:var(--muted);
  font-size:.72rem;
}

.auth-divider{
  display:flex;
  align-items:center;
  gap:12px;
  margin:22px 0;
}

.auth-divider span{
  flex:1;
  height:1px;
  background:rgba(255,255,255,.10);
}

.auth-divider strong{
  color:rgba(255,255,255,.55);
  font-size:.72rem;
  letter-spacing:.08em;
}

.auth-form{
  display:grid;
  gap:14px;
  text-align:left;
}

.auth-form label{
  font-size:.78rem;
  font-weight:800;
  color:#fff;
}

.auth-password-wrap{
  position:relative;
}

.auth-password-wrap .lp-input{
  padding-right:54px;
}

.auth-eye-btn{
  position:absolute;
  right:12px;
  top:50%;
  transform:translateY(-50%);
  border:none;
  background:rgba(255,255,255,.08);
  width:34px;
  height:34px;
  border-radius:10px;
  color:#fff;
  cursor:pointer;
}

.auth-row{
  display:flex;
  justify-content:flex-end;
}

.auth-row a{
  color:var(--gold);
  font-size:.76rem;
  font-weight:800;
}

.auth-message{
  margin-top:16px;
  color:var(--muted);
  font-size:.8rem;
}

.auth-switch{
  margin-top:22px;
  color:var(--muted);
  font-size:.82rem;
}

.auth-switch a{
  color:var(--gold);
  font-weight:900;
}

@media (max-width: 640px){

  .auth-card{
    padding:28px 20px;
    border-radius:24px;
  }

  .auth-card h1{
    font-size:1.7rem;
  }

  .auth-logo{
    width:120px;
  }

}