:root{
  --bg:#0b0f1a;
  --card:#111a2b;
  --text:#eaf0ff;
  --muted:#b7c3e0;
  --brand:#7c5cff;
  --brand2:#00d4ff;
  --border:rgba(255,255,255,.08);
  --shadow:0 18px 50px rgba(0,0,0,.35);
  --radius:20px;
  --max:1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 420px at 15% -10%, rgba(124,92,255,.35), transparent 60%),
    radial-gradient(700px 420px at 90% 10%, rgba(0,212,255,.20), transparent 55%),
    linear-gradient(180deg, #070a12 0%, var(--bg) 60%, #070a12 100%);
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
}

/* NAV */
.nav{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(10px);
  background:rgba(7,10,18,.65);
  border-bottom:1px solid var(--border);
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  font-weight:800;
  letter-spacing:.2px;
  position:relative;
  isolation:isolate;
}

.logo{
  width:52px;
  height:52px;
  border-radius:14px;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, rgba(124,92,255,.10), rgba(0,212,255,.10));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 8px 20px rgba(0,0,0,.22);
  flex-shrink:0;
  position:relative;
  z-index:3;
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.logo img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  transform:scale(1.15);
  transition:transform .35s ease;
}

.brand-text-wrap{
  position:relative;
  display:flex;
  align-items:center;
  min-width:max-content;
  z-index:2;
  transform:translateX(18px);
  opacity:0;
  transition:transform .42s ease, opacity .22s ease;
}

.brand-text{
  position:relative;
  z-index:2;
  display:inline-block;
  font-size:22px;
  font-weight:900;
  line-height:1;
  color:#fff;
  white-space:nowrap;
  padding:10px 16px;
}

/* המסור יוצא מתוך האייקון עצמו */
.brand-saw{
  position:absolute;
  top:0%;
  right:-12px;
  transform:translateY(-30%) scaleX(.08);
  transform-origin:right center;
  width:175px;
  height:144px;
  max-width:none;
  object-fit:fill;
  opacity:0;
  z-index:1;
  pointer-events:none;
  transition:transform .42s ease, opacity .22s ease;
}

.brand:hover .brand-saw{
  opacity:1;
  transform:translateY(-30%) scaleX(1);
}

.brand:hover .brand-text{
  transform:translateX(-4px);
}

.brand:hover .brand-text-wrap{
  transform:translateX(0);
  opacity:1;
}

.brand:hover .logo{
  border-color:rgba(255,255,255,.16);
  box-shadow:0 10px 24px rgba(0,0,0,.28);
}

.brand:hover .logo img{
  transform:scale(1.18);
}

.links{
  display:flex;
  gap:18px;
  align-items:center;
}

.links a{
  padding:10px 12px;
  border-radius:12px;
  color:var(--muted);
  transition:.2s ease;
}

.links a:hover{
  color:var(--text);
  background:rgba(255,255,255,.05);
}

.links a.active{
  color:var(--text);
  background:rgba(124,92,255,.16);
  border:1px solid rgba(124,92,255,.25);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(124,92,255,.35);
  background:linear-gradient(135deg, rgba(124,92,255,.35), rgba(0,212,255,.18));
  box-shadow:0 12px 30px rgba(0,0,0,.25);
  transition:transform .15s ease, filter .15s ease;
  font-weight:650;
}

.btn:hover{
  transform:translateY(-1px);
  filter:brightness(1.08);
}

.btn:active{
  transform:translateY(0) scale(.99);
}

/* HERO */
.hero{
  padding:56px 0 28px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:26px;
  align-items:stretch;
}

.card{
  background:rgba(17,26,43,.72);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.hero-left{
  padding:28px;
}

.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  color:var(--muted);
  border:1px solid var(--border);
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
}

.dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--brand), var(--brand2));
}

h1{
  margin:14px 0 10px;
  font-size:clamp(34px, 4vw, 52px);
  line-height:1.05;
  letter-spacing:-.8px;
}

.sub{
  color:var(--muted);
  font-size:16px;
  line-height:1.6;
  max-width:56ch;
}

.hero-actions{
  display:flex;
  gap:12px;
  margin-top:18px;
  flex-wrap:wrap;
}

.stats{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
  margin-top:22px;
}

.stat{
  padding:14px;
  border-radius:16px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
}

.stat b{
  font-size:18px;
}

.stat span{
  display:block;
  color:var(--muted);
  margin-top:4px;
  font-size:13px;
}

.hero-right{
  padding:16px;
  position:relative;
  overflow:hidden;
}

.slider{
  height:100%;
  min-height:360px;
  border-radius:18px;
  overflow:hidden;
  position:relative;
  border:1px solid var(--border);
}

.slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transform:scale(1.03);
  transition:opacity .8s ease, transform 1.4s ease;
}

.slide.active{
  opacity:1;
  transform:scale(1);
}

.slider-controls{
  position:absolute;
  left:12px;
  right:12px;
  bottom:12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}

.pills{
  display:flex;
  gap:8px;
}

.pill{
  width:10px;
  height:10px;
  border-radius:999px;
  background:rgba(255,255,255,.35);
  border:1px solid rgba(255,255,255,.22);
  cursor:pointer;
}

.pill.active{
  background:linear-gradient(135deg, var(--brand), var(--brand2));
}

.iconbtn{
  width:42px;
  height:42px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(7,10,18,.45);
  color:var(--text);
  cursor:pointer;
  transition:.15s ease;
}

.iconbtn:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.06);
}

.iconbtn:active{
  transform:translateY(0) scale(.99);
}

/* SECTIONS */
.section{
  padding:22px 0 56px;
}

.section h2{
  margin:0 0 10px;
  font-size:26px;
}

.grid3{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}

.grid2{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:14px;
}

.feature{
  padding:18px;
}

.feature h3{
  margin:8px 0 6px;
}

.feature p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}

/* GALLERY */
.gallery{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}

.work{
  overflow:hidden;
  position:relative;
  border-radius:18px;
  border:1px solid var(--border);
  min-height:210px;
  background:rgba(255,255,255,.03);
}

.work img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.02);
  transition:transform .6s ease;
  filter:contrast(1.05) saturate(1.1);
}

.work:hover img{
  transform:scale(1.07);
}

.work .label{
  position:absolute;
  left:12px;
  bottom:12px;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(7,10,18,.65);
  border:1px solid var(--border);
  backdrop-filter:blur(8px);
  color:var(--text);
  font-weight:650;
}

/* FORM */
.form{
  padding:18px;
}

.row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.field{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-top:12px;
}

label{
  color:var(--muted);
  font-size:13px;
}

input,
textarea{
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  color:var(--text);
  outline:none;
}

textarea{
  min-height:140px;
  resize:vertical;
}

input:focus,
textarea:focus{
  border-color:rgba(124,92,255,.55);
  box-shadow:0 0 0 4px rgba(124,92,255,.12);
}

/* FOOTER */
.footer{
  padding:22px 0;
  border-top:1px solid var(--border);
  color:var(--muted);
  text-align:center;
}

/* REVEAL */
.reveal{
  opacity:0;
  transform:translateY(14px);
  transition:opacity .65s ease, transform .65s ease;
}

.reveal.in{
  opacity:1;
  transform:translateY(0);
}

/* SHOP */
.shop{
  margin-top:26px;
  padding:26px 0 56px;
}

.shop-head{
  margin-bottom:14px;
}

.shop-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  margin-bottom:12px;
}

.shop-head h2{
  margin:0 0 8px;
  font-size:clamp(26px, 3.2vw, 36px);
  line-height:1.05;
}

.shop-sub{
  margin:0;
  color:rgba(255,255,255,.70);
  max-width:72ch;
}

.shop-toolbar{
  margin-top:14px;
  display:grid;
  grid-template-columns:1.2fr 2fr auto;
  gap:12px;
  align-items:center;
  padding:12px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  backdrop-filter:blur(10px);
}

.shop-search{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.18);
}

.shop-search input{
  width:100%;
  border:0;
  outline:0;
  background:transparent;
  color:inherit;
}

.shop-ic{
  opacity:.85;
}

.shop-selects{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:10px;
}

.shop-select{
  display:grid;
  gap:6px;
  font-size:12px;
  color:rgba(255,255,255,.72);
}

.shop-select select{
  padding:12px 10px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.18);
  color:inherit;
  outline:none;
}

.shop-select select:focus{
  border-color:rgba(0,229,255,.35);
}

.shop-toggles{
  display:flex;
  gap:8px;
  justify-content:flex-end;
  flex-wrap:wrap;
}

.shop-chip{
  padding:12px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.18);
  color:rgba(255,255,255,.92);
  cursor:pointer;
  transition:transform .15s ease, background .15s ease, border-color .15s ease;
}

.shop-chip:hover{
  transform:translateY(-1px);
  border-color:rgba(255,255,255,.18);
  background:rgba(255,255,255,.05);
}

.shop-chip[aria-pressed="true"]{
  border-color:rgba(255,77,141,.35);
  background:linear-gradient(135deg, rgba(255,77,141,.22), rgba(124,77,255,.14));
}

.shop-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
}

.shop-card{
  border-radius:20px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  overflow:hidden;
  box-shadow:0 12px 40px rgba(0,0,0,.25);
  transform:translateY(0);
  transition:transform .18s ease, border-color .18s ease, background .18s ease;
}

.shop-card:hover{
  transform:translateY(-3px);
  border-color:rgba(255,255,255,.16);
  background:rgba(255,255,255,.055);
}

.shop-thumb{
  height:160px;
  background:
    radial-gradient(600px 260px at 20% 10%, rgba(124,77,255,.28), transparent 60%),
    radial-gradient(520px 240px at 90% 20%, rgba(0,229,255,.18), transparent 60%),
    radial-gradient(520px 240px at 70% 90%, rgba(255,77,141,.14), transparent 60%),
    rgba(0,0,0,.25);
  border-bottom:1px solid rgba(255,255,255,.08);
  position:relative;
}

.shop-pill{
  position:absolute;
  top:12px;
  right:12px;
  padding:7px 10px;
  border-radius:999px;
  font-size:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.25);
}

.shop-pill.new{
  border-color:rgba(0,229,255,.26);
}

.shop-pill.hot{
  border-color:rgba(255,77,141,.26);
}

.shop-pill.left{
  left:12px;
  right:auto;
}

.shop-body{
  padding:12px;
}

.shop-title-row{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:flex-start;
}

.shop-card h3{
  margin:0;
  font-size:16px;
}

.shop-desc{
  margin:6px 0 10px;
  color:rgba(255,255,255,.70);
  font-size:13px;
  line-height:1.35;
}

.shop-tags{
  display:flex;
  gap:6px;
  flex-wrap:wrap;
  margin-bottom:12px;
}

.shop-tag{
  font-size:12px;
  padding:7px 9px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.18);
}

.shop-price{
  font-weight:800;
  background:linear-gradient(135deg, rgba(124,77,255,.35), rgba(0,229,255,.18));
  border:1px solid rgba(124,77,255,.22);
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
}

.shop-actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  padding:0 12px 12px;
}

.shop-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 10px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.18);
  color:inherit;
  cursor:pointer;
  transition:transform .15s ease, background .15s ease, border-color .15s ease;
}

.shop-btn:hover{
  transform:translateY(-1px);
  border-color:rgba(255,255,255,.18);
  background:rgba(255,255,255,.05);
}

.shop-primary{
  border-color:rgba(124,77,255,.35);
  background:linear-gradient(135deg, rgba(124,77,255,.34), rgba(0,229,255,.16));
}

.shop-fill{
  flex:1;
}

.shop-fav{
  width:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.18);
  cursor:pointer;
}

.shop-fav[data-on="true"]{
  border-color:rgba(255,77,141,.35);
  background:rgba(255,77,141,.12);
}

.shop-empty{
  margin-top:16px;
}

.shop-empty-box{
  padding:18px;
  border-radius:24px;
  border:1px dashed rgba(255,255,255,.16);
  background:rgba(255,255,255,.03);
  text-align:center;
}

.shop-empty-emoji{
  font-size:30px;
}

/* MODAL */
.shop-modal{
  position:fixed;
  inset:0;
  display:grid;
  place-items:center;
  z-index:100;
}

.shop-modal[hidden]{
  display:none !important;
}

.shop-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(8px);
}

.shop-modal-card{
  position:relative;
  width:min(620px, calc(100vw - 24px));
  border-radius:24px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(18,20,36,.92), rgba(10,12,22,.92));
  overflow:hidden;
  box-shadow:0 20px 60px rgba(0,0,0,.45);
}

.shop-modal-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.shop-modal-body{
  padding:14px;
  color:rgba(255,255,255,.88);
}

.shop-modal-actions{
  display:flex;
  gap:10px;
  justify-content:flex-end;
  padding:0 14px 14px;
}

.shop-x{
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.18);
  color:inherit;
  cursor:pointer;
}

/* RESPONSIVE */
@media (max-width:980px){
  .shop-toolbar{grid-template-columns:1fr;gap:10px}
  .shop-selects{grid-template-columns:repeat(2, 1fr)}
  .shop-grid{grid-template-columns:repeat(2, 1fr)}
}

@media (max-width:920px){
  .hero-grid{grid-template-columns:1fr}
  .slider{min-height:300px}
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr}
  .row{grid-template-columns:1fr}
  .links{gap:8px}
}

@media (max-width:740px){
  .shop-grid{grid-template-columns:1fr}
}

@media (max-width:640px){
  .nav-inner{
    gap:12px;
    flex-wrap:wrap;
  }

  .brand-text{
    font-size:18px;
  }

  .logo{
    width:44px;
    height:44px;
  }

  .links{
    width:100%;
    flex-wrap:wrap;
    justify-content:center;
  }

  .btn{
    width:100%;
  }

  .stats{
    grid-template-columns:1fr;
  }
}