:root{
  --bg:#070A0F;
  --panel: rgba(255,255,255,0.06);
  --panel2: rgba(255,255,255,0.08);
  --stroke: rgba(255,255,255,0.10);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.68);
  --cyan:#2EF2FF;
  --cyan2:#6AF7FF;
  --shadow: 0 20px 60px rgba(0,0,0,0.45);
  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
strong{ font-weight:700; }

.container{
  width:min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0 40px;
}

/* Background */
.bg{ position:fixed; inset:0; z-index:-5; overflow:hidden; }
.blob{
  position:absolute; width: 720px; height:720px; border-radius:50%;
  filter: blur(60px); opacity:0.26;
  background: radial-gradient(circle at 30% 30%, var(--cyan), transparent 55%);
}
.blob--a{ left:-260px; top:-260px; }
.blob--b{
  right:-340px; bottom:-320px;
  background: radial-gradient(circle at 30% 30%, #00d5ff, transparent 55%);
  opacity:0.18;
}
.grid{
  position:absolute; inset:-2px;
  background:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at 30% 10%, black 30%, transparent 65%);
  opacity:0.25;
}
.noise{
  position:absolute; inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.20'/%3E%3C/svg%3E");
  opacity:0.10;
  mix-blend-mode: overlay;
}

/* Topbar */
.topbar{
  position:fixed; left:0; right:0; top:0;
  display:flex; align-items:center; justify-content:space-between;
  padding: 18px 20px;
  z-index:10;
  background: rgba(7,10,15,0.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.brand{ display:flex; align-items:center; gap:10px; }
.brand__dot{
  width:12px; height:12px; border-radius:50%;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(46,242,255,0.12);
}
.brand__name{ font-weight:800; letter-spacing:0.3px; }
.brand__tag{ color: var(--muted); font-size: 13px; margin-left: 6px; }

.nav{ display:flex; align-items:center; gap:18px; }
.nav a{
  color: rgba(255,255,255,0.78);
  font-weight:500;
  font-size:14px;
  padding:10px 10px;
  border-radius: 10px;
  transition: 160ms ease;
}
.nav a:hover{ background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.95); }

.burger{
  display:none;
  width:44px; height:44px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  cursor:pointer;
}
.burger span{
  display:block;
  width:18px; height:2px;
  background: rgba(255,255,255,0.86);
  margin: 4px auto;
}

/* Drawer mobile */
.drawer{
  position:fixed; inset:0; z-index:20;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);
}
.drawer__panel{
  position:absolute; right:14px; top:14px;
  width: min(380px, calc(100% - 28px));
  border-radius: 18px;
  background: rgba(18,22,30,0.82);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow);
  padding: 14px;
}
.drawer__head{
  display:flex; align-items:center; justify-content:space-between;
  padding: 6px 6px 12px;
}
.drawer__title{ font-weight:700; }
.drawer__close{
  width:40px; height:40px; border-radius: 12px;
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.9);
  cursor:pointer;
}
.drawer__links{ display:flex; flex-direction:column; gap:8px; padding: 6px; }
.drawer__links a{
  padding: 14px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
}
.drawer__cta{ padding: 10px 6px 4px; }

/* Common */
.section{ margin-top: 70px; }
.section__head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap: 26px;
  margin-bottom: 18px;
}
.section__head h2{ margin:0; font-size: 28px; letter-spacing:-0.6px; }
.section__head p{ margin:0; color: var(--muted); max-width: 640px; line-height:1.6; }

.card{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.06);
  box-shadow: var(--shadow);
}
.glass{ backdrop-filter: blur(16px); }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  font-weight: 600;
  font-size: 14px;
  cursor:pointer;
  user-select:none;
  transition: 160ms ease;
  background: rgba(255,255,255,0.05);
}
.btn:hover{ transform: translateY(-1px); }
.btn--primary{
  background: linear-gradient(135deg, rgba(46,242,255,0.22), rgba(46,242,255,0.10));
  border-color: rgba(46,242,255,0.35);
  box-shadow: 0 10px 40px rgba(46,242,255,0.16);
}
.btn--ghost{
  background: rgba(255,255,255,0.03);
}
.btn--small{ padding: 10px 12px; border-radius: 12px; font-size: 13px; }

.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.80);
  margin-bottom: 14px;
}
.pill__dot{
  width:8px; height:8px; border-radius:50%;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(46,242,255,0.10);
}

/* Hero */
.hero{
  display:grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 26px;
  align-items: center;
  min-height: calc(100vh - 160px);
}
.hero h1{
  margin: 0;
  font-size: 46px;
  line-height: 1.05;
  letter-spacing: -1.2px;
}
.grad{
  background: linear-gradient(90deg, var(--cyan), rgba(255,255,255,0.92));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.grad2{
  background: linear-gradient(90deg, rgba(255,255,255,0.92), var(--cyan2));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.lead{ color: var(--muted); line-height:1.7; margin: 14px 0 18px; max-width: 560px; }

.hero__cta{ display:flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.hero__stats{
  display:flex; gap: 14px; flex-wrap: wrap;
}
.stat{
  display:flex; align-items:center; gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}
.stat__num{ font-size: 18px; }
.stat__txt{ color: rgba(255,255,255,0.78); font-size: 13px; }

.heroCard{ padding: 16px; border-radius: 28px; }
.heroCard__top{
  display:flex; align-items:center; justify-content:space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.chips{ display:flex; flex-wrap:wrap; gap:8px; justify-content:flex-end; }
.chip{
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(46,242,255,0.10);
  border: 1px solid rgba(46,242,255,0.22);
  color: rgba(255,255,255,0.86);
  font-size: 12px;
  font-weight: 600;
}
.chip--soft{
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.72);
}
.heroCard__screen{
  border-radius: 20px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.25);
}
.screen__bar{
  display:flex; align-items:center; gap:8px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.dot{ width:10px; height:10px; border-radius:50%; opacity:0.9; }
.dot--r{ background:#ff5c5c; }
.dot--y{ background:#ffcc4a; }
.dot--g{ background:#29d97a; }
.screen__title{ margin-left:auto; color: rgba(255,255,255,0.68); font-size: 12px; }

.screen__body{ padding: 14px; display:grid; gap: 12px; }
.kpi{ display:grid; gap: 6px; }
.kpi__label{ color: rgba(255,255,255,0.70); font-size:12px; }
.kpi__value{ font-weight:800; letter-spacing:0.2px; }
.kpi__bar{
  height:10px; border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  overflow:hidden;
}
.kpi__bar span{
  display:block; height:100%;
  background: linear-gradient(90deg, rgba(46,242,255,0.90), rgba(255,255,255,0.20));
  border-radius: 999px;
}
.mini{
  display:flex; gap: 10px; align-items:center;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}
.mini__icon{ font-size: 18px; }
.mini__t1{ font-weight:700; }
.mini__t2{ color: rgba(255,255,255,0.68); font-size: 13px; margin-top:2px; }

.code{
  padding: 12px;
  border-radius: 18px;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.08);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.78);
}
.code__line{ padding: 4px 0; }
.code .c{ color: rgba(46,242,255,0.92); }
.code .s{ color: rgba(255,255,255,0.88); }

.heroCard__bottom{
  display:flex; justify-content:space-between;
  margin-top: 12px;
}
.link{ color: rgba(255,255,255,0.80); font-weight:600; font-size:13px; }
.link:hover{ color: white; }

/* Grids */
.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cards3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* Story */
.ticks{ margin: 12px 0 0; padding-left: 18px; color: rgba(255,255,255,0.78); }
.ticks li{ margin: 8px 0; }
.tags{ display:flex; flex-wrap:wrap; gap: 10px; margin-top: 12px; }
.tag{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.78);
  font-size: 13px;
}

/* Filters */
.filters{
  display:flex; gap: 10px; flex-wrap: wrap;
  margin: 10px 0 16px;
}
.fbtn{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.80);
  cursor:pointer;
}
.fbtn.is-active{
  border-color: rgba(46,242,255,0.40);
  box-shadow: 0 12px 36px rgba(46,242,255,0.12);
}

/* Work cards */
.work{ overflow:hidden; cursor:pointer; transition: 180ms ease; }
.work:hover{ transform: translateY(-2px); border-color: rgba(46,242,255,0.25); }
.work__thumb{
  height: 180px;
  position:relative;
  background:
    radial-gradient(circle at 30% 20%, rgba(46,242,255,0.28), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.10), transparent 55%),
    rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.work__thumb--moto{
  background:
    radial-gradient(circle at 35% 25%, rgba(46,242,255,0.22), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.10), transparent 55%),
    linear-gradient(135deg, rgba(0,0,0,0.35), rgba(0,0,0,0.10));
}
.work__thumb--code{
  background:
    radial-gradient(circle at 30% 20%, rgba(46,242,255,0.22), transparent 55%),
    linear-gradient(135deg, rgba(0,0,0,0.35), rgba(0,0,0,0.12));
}
.thumbBadge{
  position:absolute; left: 12px; top: 12px;
  padding: 8px 10px; border-radius: 999px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.10);
  font-size: 12px; font-weight: 700;
}
.thumbText{
  position:absolute; left:12px; bottom: 12px;
  color: rgba(255,255,255,0.82);
  font-weight:600; font-size: 13px;
}
.work__body{ padding: 14px; }
.work__body h3{ margin: 0 0 8px; }
.work__body p{ margin: 0 0 12px; color: var(--muted); line-height:1.6; }
.meta{ display:flex; gap: 10px; flex-wrap:wrap; }
.meta span{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  font-size: 12px;
  color: rgba(255,255,255,0.78);
}

/* Services */
.priceRow{
  display:flex; align-items:center; justify-content:space-between;
  margin-top: 12px;
}
.price{ font-weight: 800; letter-spacing:0.2px; }

/* Shop */
.shopGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.product{ overflow:hidden; }
.product__img{
  height: 160px;
  background:
    radial-gradient(circle at 30% 20%, rgba(46,242,255,0.25), transparent 55%),
    rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.product__img--hoodie{
  background:
    radial-gradient(circle at 40% 25%, rgba(46,242,255,0.20), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.10), transparent 55%),
    rgba(0,0,0,0.25);
}
.product__img--poster{
  background:
    radial-gradient(circle at 35% 30%, rgba(46,242,255,0.18), transparent 55%),
    rgba(0,0,0,0.25);
}
.product__body{ padding: 14px; }
.product__body p{ color: var(--muted); margin: 8px 0 12px; }
.product__row{ display:flex; align-items:center; justify-content:space-between; gap: 10px; }
.product__price{ font-weight: 900; }

.cart{
  margin-top: 16px;
  padding: 14px;
}
.cart__head{
  display:flex; justify-content:space-between; align-items:center;
  margin-bottom: 10px;
}
.cart__items{ display:grid; gap: 10px; }
.cartItem{
  display:flex; align-items:center; justify-content:space-between;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}
.cartItem__name{ color: rgba(255,255,255,0.86); font-weight: 700; }
.cartItem__qty{ color: var(--muted); font-size: 13px; }

/* Contact */
.form{ padding: 14px; }
.form__row{ display:grid; gap: 8px; margin-bottom: 12px; }
label{ color: rgba(255,255,255,0.78); font-size: 13px; }
input, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.25);
  color: rgba(255,255,255,0.92);
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(46,242,255,0.35);
  box-shadow: 0 0 0 5px rgba(46,242,255,0.10);
}
.hint{ margin-top: 10px; color: rgba(255,255,255,0.62); font-size: 12px; line-height:1.5; }

.contactCard{ padding: 14px; }
.links{ display:grid; gap: 10px; margin: 12px 0 14px; }
.linkRow{
  display:flex; align-items:center; justify-content:space-between;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}
.linkRow__arrow{ color: rgba(46,242,255,0.92); }
.badgeRow{ display:flex; flex-wrap:wrap; gap: 10px; }
.badge{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(46,242,255,0.22);
  background: rgba(46,242,255,0.08);
  color: rgba(255,255,255,0.86);
  font-size: 12px;
  font-weight:700;
}

/* Footer */
.footer{
  display:flex; justify-content:space-between; gap: 12px;
  padding: 26px 0 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 50px;
}
.muted{ color: var(--muted); }

/* Toast */
.toast{
  position: fixed;
  left: 50%; bottom: 18px;
  transform: translateX(-50%);
  background: rgba(18,22,30,0.88);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 12px 14px;
  box-shadow: var(--shadow);
  color: rgba(255,255,255,0.88);
  z-index: 50;
}

/* Responsive */
@media (max-width: 980px){
  .hero{ grid-template-columns: 1fr; min-height:auto; }
  .section__head{ flex-direction:column; align-items:flex-start; }
  .cards3{ grid-template-columns: 1fr 1fr; }
  .shopGrid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px){
  .container{ width: min(var(--max), calc(100% - 28px)); padding-top: 92px; }
  .nav{ display:none; }
  .burger{ display:inline-block; }
  .hero h1{ font-size: 34px; }
  .grid2{ grid-template-columns: 1fr; }
  .cards3{ grid-template-columns: 1fr; }
  .shopGrid{ grid-template-columns: 1fr; }
  .footer{ flex-direction:column; }
}
