:root{
  --primary:#22001d;
  --bg:#12000f;
  --accent:#ff4da6;
  --accent2:#ff86c8;

  --panel: rgba(255,255,255,.045);
  --panel2: rgba(255,255,255,.03);
  --border: rgba(255,255,255,.12);

  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);

  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --shadow2: 0 10px 40px rgba(0,0,0,.28);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background: var(--bg);
  overflow-x:hidden;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{width:min(1180px, calc(100% - 40px)); margin:0 auto}

.bg-layers{position:fixed; inset:0; z-index:-3; pointer-events:none}
.bg-gradient{
  position:absolute; inset:-20%;
  background:
    radial-gradient(65% 65% at 18% 8%, rgba(255,77,166,.30), transparent 60%),
    radial-gradient(55% 55% at 82% 18%, rgba(255,134,200,.16), transparent 55%),
    radial-gradient(60% 60% at 55% 60%, rgba(255,77,166,.10), transparent 60%),
    linear-gradient(160deg, rgba(34,0,29,.95), rgba(18,0,15,1));
  filter:saturate(1.05);
}
.bg-texture{
  position:absolute; inset:0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity:.16;
}
.bg-vignette{
  position:absolute; inset:0;
  background: radial-gradient(closest-side, transparent 55%, rgba(0,0,0,.55));
  opacity:.9;
}
.bg-glow{
  position:absolute; inset:-30%;
  background: radial-gradient(circle at 55% 45%, rgba(255,77,166,.10), transparent 55%);
}

/* Icons (hard limit to avoid gigantism) */
.ico{
  width:18px; height:18px;
  display:inline-flex; align-items:center; justify-content:center;
  flex:0 0 auto;
  color:rgba(255,255,255,.9);
}
.ico svg{width:18px;height:18px;max-width:18px;max-height:18px;fill:currentColor;display:block}
.btn .ico{width:18px;height:18px}
.nav .ico{width:16px;height:16px;color:rgba(255,255,255,.78)}
.card h3 .ico{margin-right:8px;color:rgba(255,77,166,.92)}

/* Header */
.header{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(14px);
  background: rgba(18,0,15,.55);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.header-inner{display:flex; align-items:center; justify-content:space-between; gap:16px; padding:16px 0}
.brand{display:flex; align-items:center; gap:12px}
.brand-logo{height:44px; width:auto}
.brand-mark{
  width:38px; height:38px; border-radius:14px;
  background: radial-gradient(circle at 30% 30%, var(--accent), var(--primary));
  box-shadow:0 0 24px rgba(255,77,166,.25)
}
.brand-text strong{display:block;font-size:14px;letter-spacing:.3px}
.brand-text small{display:block;font-size:12px;color:var(--muted)}

.nav{display:flex; align-items:center; gap:18px}
.nav a{
  display:inline-flex; align-items:center; gap:8px;
  color:var(--muted); font-size:14px;
  padding:8px 10px; border-radius:14px;
  border:1px solid transparent;
}
.nav a:hover{color:var(--text); background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.10)}
.nav a span{line-height:1}

.nav-toggle{display:none; background:transparent; border:0; cursor:pointer}
.nav-toggle span{display:block; width:24px; height:2px; background:rgba(255,255,255,.8); margin:5px 0; border-radius:4px}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:10px 14px; border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color:var(--text);
  font-weight:700; font-size:14px;
  cursor:pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn:hover{transform: translateY(-1px); border-color: rgba(255,255,255,.22)}
.btn-accent{
  background: linear-gradient(135deg, rgba(255,77,166,.28), rgba(255,77,166,.09));
  border-color: rgba(255,77,166,.50);
  box-shadow: 0 0 0 rgba(255,77,166,0);
}
.btn-accent:hover{box-shadow: 0 0 28px rgba(255,77,166,.22)}
.btn-ghost{background: rgba(255,255,255,.02)}

.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 10px; border-radius:999px;
  border:1px solid rgba(255,77,166,.45);
  color:rgba(255,255,255,.86);
  font-size:12px;
  background: rgba(255,77,166,.08);
}

/* Hero */
.hero-premium{padding:78px 0 26px}
.hero-grid{display:grid; grid-template-columns: 1.15fr .85fr; gap:26px; align-items:start}
.hero-copy h1{font-size:48px; line-height:1.05; letter-spacing:-.02em; margin:14px 0 10px}
.hero-copy p{margin:0}
.hero-copy .lead{color:var(--muted); font-size:16px; line-height:1.65; max-width: 56ch; margin-top:6px}
.hero-actions{display:flex; gap:10px; flex-wrap:wrap; margin:18px 0 18px}

.hero-metrics{display:flex; gap:10px; flex-wrap:wrap}
.metric{
  display:flex; gap:10px; align-items:center;
  padding:12px 12px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.metric-ico{
  width:36px;height:36px;border-radius:16px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(255,77,166,.18);
  background: rgba(255,77,166,.08);
}
.metric-ico .ico{width:18px;height:18px;color:rgba(255,77,166,.95)}
.metric strong{display:block;font-size:14px}
.metric span{display:block;font-size:12px;color:var(--muted)}

.hero-visual{display:flex; flex-direction:column; gap:14px}
.hero-visual-card{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}
.hero-img{width:100%; height:auto; display:block; transform: scale(1.02)}
.hero-overlay{position:absolute; left:14px; bottom:14px; display:flex; gap:8px; flex-wrap:wrap}
.overlay-chip{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px; border-radius:999px;
  background: rgba(18,0,15,.72);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}
.overlay-chip .ico{width:16px;height:16px;color:rgba(255,77,166,.95)}
.overlay-chip span{font-size:12px;color:rgba(255,255,255,.86)}

.insights-card{
  border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  padding:14px 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.insights-head{display:flex; align-items:baseline; justify-content:space-between; gap:10px; margin-bottom:10px}
.insights-grid{display:grid; grid-template-columns: 1fr 1fr; gap:10px; margin-bottom:8px}
.insight{
  padding:12px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.insight strong{font-size:20px; display:block}
.insight span{display:block; margin-top:4px; color:var(--muted)}

.muted{color:var(--muted)}
.small{font-size:12px}

/* Banner rotator */
.banner-rotator{padding:0 0 36px}
.rotator{border-radius:22px; border:1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.025); overflow:hidden}
.rotator-track{display:flex; width:300%; transform: translateX(0); transition: transform .55s ease}
.banner{width:100%; display:flex; align-items:center; justify-content:space-between; gap:14px; padding:16px 18px}
.banner-ico{
  width:46px;height:46px;border-radius:18px;
  display:flex; align-items:center; justify-content:center;
  background: radial-gradient(circle at 30% 30%, rgba(255,77,166,.22), rgba(255,255,255,.02));
  border:1px solid rgba(255,77,166,.18);
}
.banner-ico .ico{width:22px;height:22px;color:rgba(255,255,255,.9)}
.banner-copy{flex:1; min-width:0}
.banner-copy strong{display:block;font-size:15px}
.banner-copy p{margin:4px 0 0; line-height:1.5}
.banner-tag{
  padding:6px 10px; border-radius:999px;
  border:1px solid rgba(255,77,166,.28);
  background: rgba(255,77,166,.07);
  font-size:12px; color:rgba(255,255,255,.86);
}
.rotator-controls{
  display:flex; align-items:center; justify-content:center;
  gap:10px; padding:10px 12px;
  border-top:1px solid rgba(255,255,255,.08);
  background: rgba(18,0,15,.35);
}
.rotator-btn{
  width:34px;height:34px;border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color:rgba(255,255,255,.86);
  cursor:pointer; font-size:22px; line-height:1;
}
.rotator-btn:hover{border-color: rgba(255,77,166,.25); box-shadow: 0 0 24px rgba(255,77,166,.12)}
.rotator-dots{display:flex; gap:8px}
.rotator-dots button{width:8px;height:8px;border-radius:999px;border:0;background: rgba(255,255,255,.22); cursor:pointer}
.rotator-dots button.is-active{background: rgba(255,77,166,.9)}

/* Sections */
.section{padding:54px 0}
.section-alt{background: rgba(255,255,255,.02); border-top:1px solid rgba(255,255,255,.06); border-bottom:1px solid rgba(255,255,255,.06)}
.section-head{margin-bottom:18px}
.section-head h2{margin:0 0 6px; font-size:30px}

.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px}
.grid2{display:grid; grid-template-columns: repeat(2, 1fr); gap:14px}
.cards .card{
  padding:18px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.035);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.cards .card:hover{transform: translateY(-2px); border-color: rgba(255,77,166,.22); box-shadow: var(--shadow2)}
.card h3{margin:0 0 8px}
.card p{margin:0; color:var(--muted); line-height:1.6}

.product-card .product-media{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.12);
  height:200px;
  margin-bottom:12px;
}
.product-card img{width:100%; height:100%; object-fit:cover}
.product-placeholder{height:100%; width:100%; background: radial-gradient(circle at 30% 30%, rgba(255,77,166,.12), rgba(255,255,255,.04));}
.badge{
  position:absolute; top:12px; left:12px;
  font-size:12px; padding:6px 10px; border-radius:999px;
  background: rgba(18,0,15,.65);
  border:1px solid rgba(255,77,166,.35)
}
.product-foot{display:flex; align-items:center; justify-content:space-between; gap:10px; margin-top:12px}
.price{font-weight:800}
.price.big{font-size:18px}

/* Product page */
.breadcrumb{display:flex; gap:8px; align-items:center; color:var(--muted); font-size:13px; margin-bottom:14px}
.breadcrumb strong{color:var(--text)}
.product-page{display:grid; grid-template-columns: 1fr 1fr; gap:18px; align-items:start}
.product-page-info h1{margin:0 0 8px; font-size:32px}
.product-meta{display:flex; align-items:center; gap:10px; flex-wrap:wrap}
.divider{height:1px; background: rgba(255,255,255,.10); margin:14px 0}
.richtext{color:rgba(255,255,255,.86); line-height:1.7}
.product-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

/* Footer */
.footer{padding:26px 0; border-top:1px solid rgba(255,255,255,.08); background: rgba(18,0,15,.55)}
.footer-inner{display:flex; justify-content:space-between; gap:18px; flex-wrap:wrap}
.footer-links{display:flex; gap:12px; flex-wrap:wrap}
.footer-links a{display:inline-flex; align-items:center; gap:8px; color:var(--muted)}
.footer-links a:hover{color:var(--text)}
.footer-bottom{padding-top:10px}

/* Modal */
.modal{position:fixed; inset:0; display:none; z-index:50}
.modal.is-open{display:block}
.modal-backdrop{position:absolute; inset:0; background: rgba(0,0,0,.55)}
.modal-card{
  position:relative;
  width:min(720px, calc(100% - 24px));
  margin:7vh auto;
  background: rgba(18,0,15,.92);
  border:1px solid rgba(255,255,255,.14);
  border-radius:18px;
  overflow:hidden;
  box-shadow: 0 0 40px rgba(0,0,0,.45);
}
.modal-head{display:flex; justify-content:space-between; align-items:center; padding:14px 16px; border-bottom:1px solid rgba(255,255,255,.10)}
.icon-btn{background:transparent; border:0; color:rgba(255,255,255,.85); cursor:pointer; font-size:18px}
.form{padding:16px}
.form label{display:block}
.form label span{display:block; font-size:12px; color:var(--muted); margin-bottom:6px}
.form input,.form textarea{
  width:100%;
  padding:11px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color:var(--text);
  outline:none;
}
.form input:focus,.form textarea:focus{border-color: rgba(255,77,166,.5); box-shadow: 0 0 0 4px rgba(255,77,166,.08)}
.form-actions{display:flex; gap:10px; justify-content:flex-end; margin-top:12px}
.no-scroll{overflow:hidden}

/* Responsive */
@media (max-width: 920px){
  .hero-grid{grid-template-columns:1fr}
  .hero-copy h1{font-size:40px}
  .banner{flex-direction:column; align-items:flex-start}
  .banner-tag{align-self:flex-start}
  .product-page{grid-template-columns:1fr}
}
@media (max-width: 820px){
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .nav-toggle{display:block}
  .nav{
    position:absolute; right:20px; top:70px;
    background: rgba(18,0,15,.95);
    border:1px solid rgba(255,255,255,.10);
    border-radius:16px; padding:12px;
    flex-direction:column; align-items:stretch;
    min-width: 240px; display:none
  }
  .nav.is-open{display:flex}
}

.banner{position:relative}
.banner-img{width:56px;height:56px;border-radius:16px;object-fit:cover;border:1px solid rgba(255,255,255,.10)}
@media(max-width:920px){.banner-img{width:48px;height:48px}}
