@import url('https://fonts.googleapis.com/css2?family=LINE+Seed+JP:wght@400;700&display=swap');

:root{
  --bg:#070a0f;
  --panel:rgba(255,255,255,.05);
  --panel-soft:rgba(255,255,255,.03);
  --border:rgba(255,255,255,.10);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.60);
  --mint:#d1ff1a;

  --max:1200px;
  --px:20px;
  --radius:18px;
  --shadow: 0 28px 90px rgba(0,0,0,.68);
}

*{box-sizing:border-box;}
html,body{margin:0;padding:0;}
button,input,select,textarea{font:inherit;}

body{
  font-family: 'LINE Seed JP', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background-color: var(--bg);
  background-image:
    radial-gradient(1200px 560px at 50% -18%, rgba(255,255,255,.08), transparent 64%),
    linear-gradient(180deg, #070a0f 0%, #040911 100%);
  background-repeat: no-repeat, no-repeat;
  background-size: 100% 720px, 100% 100%;
  color:var(--text);
}

main{
  flex:1 0 auto;
  width:100%;
}

body{
  min-height:100svh;
  display:flex;
  flex-direction:column;
}

a{color:inherit;}
.muted{color:var(--muted);}


#featured, #bikes, #rider, #video { scroll-margin-top: 110px; }


.mm-nav{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(0,0,0,.65);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.mm-nav__inner{
  max-width:var(--max);
  margin:0 auto;
  padding:14px var(--px);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.mm-brand{
  font-weight:900;
  letter-spacing:.2em;
  font-size:14px;
  text-decoration:none;
  color:white;
}

.mm-nav__right{
  display:flex;
  align-items:center;
  gap:16px;
}

.mm-menu{
  display:flex;
  align-items:center;
  gap:14px;
}


.mm-menu > a,
.mm-dd__btn{
  height:38px;
  padding:0 14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  font-weight:800;
  font-family:inherit;
  letter-spacing:.02em;
  text-decoration:none;
  color:rgba(255,255,255,.78);
  background:transparent;
  border:1px solid transparent;
  border-radius:12px;
  line-height:1;
  vertical-align:middle;
  cursor:pointer;
}

.mm-menu > a:hover,
.mm-dd__btn:hover{
  background:rgba(255,255,255,.05);
  border-color:rgba(209,255,26,.2);
  color:white;
}


.mm-dd{
  position:relative;
  display:inline-flex;
  align-items:center;
}

.mm-dd::after{
  content:"";
  position:absolute;
  left:-12px;
  right:-12px;
  top:100%;
  height:18px;
}

.mm-dd__panel{
  position:absolute;
  top:calc(100% + 8px);
  left:0;
  min-width:240px;
  background:rgba(15,18,25,.98);
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  padding:12px;
  box-shadow: var(--shadow);
  display:none;
}

.mm-dd:hover .mm-dd__panel,
.mm-dd:focus-within .mm-dd__panel{ display:block; }

.mm-dd__panel a{
  display:block;
  padding:10px 12px;
  font-size:13px;
  font-weight:850;
  font-family:inherit;
  border-radius:12px;
  color:rgba(255,255,255,.85);
  text-decoration:none;
}

.mm-dd__panel a:hover{
  background:rgba(255,255,255,.05);
  color:white;
}


.mm-auth{ display:flex; gap:10px; }

.mm-cart{
  position:relative;
  width:38px;
  height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  text-decoration:none;
  color:white;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
}

.mm-cart:hover{
  filter:brightness(1.08);
}

.mm-cart__icon{
  width:18px;
  height:18px;
  display:inline-flex;
}

.mm-cart__icon svg{
  width:100%;
  height:100%;
  fill:currentColor;
}

.mm-cart__badge{
  position:absolute;
  top:-6px;
  right:-6px;
  min-width:18px;
  height:18px;
  padding:0 5px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
  font-weight:900;
  line-height:1;
  color:#09130d;
  background:rgba(209,255,26,.95);
  border:1px solid rgba(7,10,15,.45);
}

.mm-btn{
  height:38px;
  padding:0 16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  font-weight:900;
  border-radius:14px;
  text-decoration:none;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:white;
}

.mm-btn:hover{ filter: brightness(1.08); }

.mm-btn--ghost{
  background:rgba(209,255,26,.08);
  border-color:rgba(209,255,26,.25);
}


.hero{
  position:relative;
  width:100vw;
  height:65vh;
  min-height:480px;
  max-height:750px;
  overflow:hidden;
  margin-left:calc(-50vw + 50%);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.hero img,
.hero video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.65));
}

.hero-content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 var(--px);
}

.hero-copy{
  display:grid;
  gap:18px;
  justify-items:center;
}

.hero h1{
  font-size:clamp(42px,6vw,80px);
  font-weight:950;
  letter-spacing:-1px;
  text-align:center;
  margin:0;
}

.hero .mint{color:var(--mint);}

.hero-cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
}

.hero-cta__btn{
  min-width:220px;
  min-height:52px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(9,14,22,.58);
  color:white;
  text-decoration:none;
  display:grid;
  justify-items:center;
  align-content:center;
  gap:4px;
  transition:transform .18s ease, border-color .18s ease, background .18s ease;
}

.hero-cta__title{
  font-size:18px;
  font-weight:700;
  letter-spacing:.03em;
  line-height:1;
}

.hero-cta__meta{
  max-height:0;
  overflow:hidden;
  opacity:0;
  font-size:12px;
  font-weight:500;
  color:rgba(255,255,255,.88);
  transition:max-height .2s ease, opacity .2s ease;
}

.hero-cta__btn:hover{
  transform:translateY(-2px);
  border-color:rgba(209,255,26,.55);
  background:rgba(8,18,14,.78);
}

.hero-cta__btn:hover .hero-cta__meta{
  max-height:24px;
  opacity:1;
}

.hero-cta__btn:focus-visible .hero-cta__meta{
  max-height:24px;
  opacity:1;
}


.container{
  max-width:var(--max);
  margin:0 auto;
  padding:70px var(--px) 100px;
}

.section-head{ margin-bottom:24px; }

.section-title{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.25em;
  font-weight:900;
  color:rgba(255,255,255,.7);
}

.section-sub{
  margin-top:8px;
  font-size:20px;
  font-weight:800;
  max-width:55ch;
}


.grid{
  margin-top:26px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.card{
  border-radius:var(--radius);
  background:linear-gradient(180deg,var(--panel),var(--panel-soft));
  border:1px solid rgba(255,255,255,.08);
  overflow:hidden;
  transition:.25s ease;
}

.card:hover{
  transform:translateY(-4px);
  border-color:rgba(209,255,26,.25);
}


.auth-wrap{
  max-width: 560px;
  margin: 56px auto 90px;
  padding: 0 var(--px);
}

.panel{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  box-shadow: 0 22px 80px rgba(0,0,0,.55);
  padding: 22px;
}

.auth-card{ padding: 26px; }

.auth-title{
  margin: 0 0 6px 0;
  font-size: 26px;
  font-weight: 950;
  letter-spacing: -0.5px;
}

.form{
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.field{ display:grid; gap: 8px; }
.label{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 900;
  color: rgba(255,255,255,.68);
}

.input{
  height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.92);
  outline: none;
}

.input::placeholder{ color: rgba(255,255,255,.42); }

.input:focus{
  border-color: rgba(209,255,26,.28);
  box-shadow: 0 0 0 4px rgba(209,255,26,.08);
}

.auth-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.btn{
  height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  font-weight: 900;
  font-size: 13px;
  text-decoration: none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.btn:hover{ filter: brightness(1.08); }

.btn.ghost{
  background: rgba(209,255,26,.08);
  border-color: rgba(209,255,26,.25);
}


.alert{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  font-weight: 800;
  font-size: 13px;
}

.alert--error{
  border-color: rgba(255,120,120,.22);
  background: rgba(255,120,120,.08);
  color: rgba(255,215,215,.95);
}


.footer{
  max-width: var(--max);
  margin: 0 auto;
  padding: 26px var(--px) 36px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

.footer__brand{
  font-weight:700;
}

.footer__links{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.footer__links a{
  text-decoration:none;
  color:rgba(255,255,255,.76);
  font-size:13px;
  font-weight:800;
}

.footer__links a:hover{
  color:white;
}

.footer__socials{
  display:flex;
  align-items:center;
  gap:8px;
}

.footer__social{
  width:34px;
  height:34px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.88);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0;
}

.footer__social svg{
  width:16px;
  height:16px;
  fill:currentColor;
}

.footer__social.is-disabled{
  opacity:.56;
  cursor:not-allowed;
}

.back-to-top{
  position:fixed;
  right:22px;
  bottom:22px;
  width:44px;
  height:44px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:22px;
  line-height:1;
  color:#0b1203;
  background:var(--mint);
  border:1px solid rgba(209,255,26,.58);
  box-shadow:0 10px 30px rgba(0,0,0,.45);
  z-index:1200;
  transition:transform .18s ease, filter .18s ease;
}

.back-to-top:hover{
  transform:translateY(-2px);
  filter:brightness(1.05);
}


@media(max-width:1000px){
  .grid{grid-template-columns:repeat(2,1fr);}
}

@media(max-width:700px){
  .grid{grid-template-columns:1fr;}
  .mm-nav__right{flex-wrap:wrap; justify-content:flex-end;}
  .hero-cta__btn{min-width:188px;}
  .back-to-top{right:14px; bottom:14px;}
  .footer__row{align-items:flex-start; flex-direction:column;}
}


.admin-wrap{
  max-width:1200px;
  margin:60px auto 100px;
  padding:0 20px;
}

.admin-panel{
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  padding:28px;
  box-shadow:0 30px 100px rgba(0,0,0,.6);
}

.admin-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:22px;
}

.admin-head h1{
  margin:0;
  font-size:28px;
  font-weight:950;
  letter-spacing:-.5px;
}



.admin-table-wrap{
  overflow:auto;
}

.admin-table{
  width:100%;
  border-collapse:collapse;
  font-size:14px;
}

.admin-table th{
  text-align:left;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-weight:900;
  padding:14px 10px;
  color:rgba(255,255,255,.6);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.admin-table td{
  padding:14px 10px;
  border-bottom:1px solid rgba(255,255,255,.06);
  color:rgba(255,255,255,.9);
}

.admin-table tr:hover{
  background:rgba(255,255,255,.04);
}



.admin-actions{
  display:flex;
  gap:8px;
  justify-content:flex-end;
}

.btn.small{
  height:32px;
  padding:0 12px;
  font-size:12px;
  border-radius:10px;
}

.btn.danger{
  background:rgba(255,80,80,.12);
  border-color:rgba(255,80,80,.35);
  color:#ffbcbc;
}

.btn.danger:hover{
  background:rgba(255,80,80,.2);
}


.cart-wrap{
  max-width: 1200px;
}

.cart-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  margin-bottom:16px;
}

.cart-empty{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

.cart-grid{
  display:grid;
  grid-template-columns: 1fr 320px;
  gap:16px;
}

.cart-list{
  padding: 10px;
}

.cart-group + .cart-group{
  margin-top: 16px;
}

.cart-group__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin: 4px 4px 10px;
  padding: 0 2px;
}

.cart-group__title{
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 900;
  color: rgba(255,255,255,.62);
}

.cart-group__count{
  min-width: 24px;
  height: 20px;
  border-radius: 999px;
  padding: 0 8px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size: 11px;
  font-weight: 900;
  color: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
}

.cart-item{
  display:grid;
  grid-template-columns: 88px 1fr auto;
  gap:14px;
  align-items:center;
  padding:10px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  background:rgba(255,255,255,.02);
}

.cart-item + .cart-item{
  margin-top:10px;
}

.cart-item__media{
  width:88px;
  height:66px;
  border-radius:12px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.cart-item__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.cart-item__placeholder{
  font-size:11px;
  letter-spacing:.18em;
  font-weight:900;
  opacity:.6;
}

.cart-item__title{
  font-weight:900;
  text-decoration:none;
}

.cart-item__meta{
  margin-top:4px;
  font-size:12px;
  color:rgba(255,255,255,.62);
}

.cart-item__actions{
  margin-top:10px;
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}

.cart-item__qty{
  min-width:34px;
  height:32px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.12);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size:12px;
  background:rgba(255,255,255,.04);
}

.cart-item__remove{
  margin-left:4px;
}

.cart-item__sum{
  font-weight:950;
  white-space:nowrap;
  font-size:15px;
}

.cart-summary{
  padding:18px;
  height:fit-content;
}

.cart-summary h3{
  margin:0 0 14px;
}

.cart-summary__row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.cart-summary__row--total{
  margin-top:4px;
  font-size:18px;
  border-bottom:none;
}

.cart-summary__actions{
  margin-top:14px;
  display:grid;
  gap:8px;
}

.cart-summary__actions .btn{
  width:100%;
}

.cart-summary__continue{
  text-align:center;
  font-size:12px;
  font-weight:700;
  color:rgba(255,255,255,.72);
  text-decoration:none;
}

.cart-summary__continue:hover{
  color:white;
}

.ticket-chat{
  display:grid;
  gap:10px;
}

.ticket-msg{
  display:flex;
  flex-direction:column;
  max-width:78%;
  gap:4px;
}

.ticket-msg--mine{
  margin-left:auto;
  align-items:flex-end;
}

.ticket-msg--theirs{
  margin-right:auto;
  align-items:flex-start;
}

.ticket-msg__meta{
  font-size:12px;
  color:rgba(255,255,255,.58);
}

.ticket-msg__bubble{
  padding:10px 12px;
  border-radius:14px;
  line-height:1.35;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.05);
  color:rgba(255,255,255,.92);
}

.ticket-msg--mine .ticket-msg__bubble{
  background:rgba(209,255,26,.14);
  border-color:rgba(209,255,26,.28);
  color:#efffd8;
}

@media (max-width: 980px){
  .cart-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px){
  .cart-item{
    grid-template-columns: 72px 1fr;
  }

  .cart-item__sum{
    grid-column: 2;
    justify-self:end;
  }
}

.p-card{
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  box-shadow: 0 20px 70px rgba(0,0,0,.45);
  transition: transform .22s ease, border-color .22s ease, filter .22s ease;
}

.p-card:hover{
  transform: translateY(-4px);
  border-color: rgba(209,255,26,.22);
  filter: brightness(1.03);
}

.p-card__media{
  display:block;
  position: relative;
  aspect-ratio: 4 / 3;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.07);
  overflow: hidden;
  text-decoration:none;
}

.p-card__media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transform: scale(1.02);
  transition: transform .35s ease;
}

.p-card:hover .p-card__media img{
  transform: scale(1.06);
}

.p-card__placeholder{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 950;
  letter-spacing: .28em;
  color: rgba(255,255,255,.25);
  font-size: 18px;
}

.p-card__body{
  padding: 14px 14px 16px;
}

.p-card__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
}

.p-card__title{
  margin:0;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: .01em;
  color: rgba(255,255,255,.92);
  line-height: 1.2;
}

.p-card__title-link{
  text-decoration:none;
  color:inherit;
}

.p-card__price{
  font-size: 13px;
  font-weight: 950;
  color: rgba(255,255,255,.78);
  white-space: nowrap;
}

.p-card__cart-form{
  margin-top:12px;
}

.p-card__cart-btn{
  width:100%;
  height:38px;
}

.p-card__sub{
  margin: 10px 0 0;
  font-size: 13px;
  color: rgba(255,255,255,.60);
  line-height: 1.35;
  max-width: 52ch;
}

.p-card__actions{
  margin-top: 12px;
  display:flex;
  gap: 10px;
}

.p-btn{
  height: 36px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  text-decoration:none;
  font-weight: 900;
  font-size: 12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.p-btn:hover{ filter: brightness(1.08); }

.p-btn--ghost{
  background: rgba(209,255,26,.08);
  border-color: rgba(209,255,26,.22);
}
select{
  height:44px;
  padding:0 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:rgba(255,255,255,.92);
  font-weight:700;
  appearance:none;
}

select option{
  background:#111;
  color:white;
}

.p-card__media{
  aspect-ratio: 4 / 3;
  background:#111;
}

.p-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.p-card__link{ display:block; text-decoration:none; }
.p-card__title{ margin:0; font-weight:950; font-size:14px; }
.p-card__price{ margin-top:8px; font-weight:950; opacity:.85; }


.product-wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 20px 110px;
}

.product-shell{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 28px 90px rgba(0,0,0,.65);
  position: relative;
}

.product-top{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 14px;
  padding: 8px 6px 18px;
}

.product-title{
  margin:0;
  font-size: 30px;
  font-weight: 950;
  letter-spacing: -0.6px;
}

.product-price{
  font-weight: 950;
  font-size: 16px;
  opacity: .85;
  white-space: nowrap;
}

.product-top__right{
  display:flex;
  align-items:center;
  gap:10px;
}

.product-close{
  width:28px;
  height:28px;
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:13px;
  font-weight:900;
  color:rgba(255,255,255,.82);
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.05);
}

.product-close:hover{
  color:white;
  background:rgba(255,255,255,.10);
}

.product-grid{
  display:grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
}

@media (max-width: 900px){
  .product-grid{ grid-template-columns: 1fr; }
  .product-switch{ flex-wrap: wrap; }
}


.pgallery__stage{
  position: relative;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.35);
  aspect-ratio: 4 / 3;
  user-select: none;
  touch-action: pan-y;
}

.pgallery__img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  opacity:0;
  transform: scale(1.01);
  transition: opacity .18s ease;
}

.pgallery__img.is-active{ opacity: 1; }

.pgallery__nav{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.40);
  color: rgba(255,255,255,.95);
  font-weight: 900;
  font-size: 22px;
  cursor:pointer;
  z-index: 3;
}

.pgallery__nav--prev{ left: 10px; }
.pgallery__nav--next{ right: 10px; }

.pgallery__thumbs{
  margin-top: 10px;
  display:flex;
  gap: 10px;
  overflow:auto;
  padding-bottom: 2px;
}

.pgallery__thumb{
  width: 78px;
  height: 58px;
  padding: 0;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  overflow:hidden;
  cursor:pointer;
  flex: 0 0 auto;
}

.pgallery__thumb img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.pgallery__thumb.is-active{
  border-color: rgba(209,255,26,.28);
}

.pgallery__placeholder{
  height: 420px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 950;
  letter-spacing: .28em;
  color: rgba(255,255,255,.25);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
}


.pinfo{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  padding: 16px;
}

.pinfo__desc{
  color: rgba(255,255,255,.78);
  line-height: 1.6;
  font-weight: 650;
}

.pinfo__cta{
  margin-top: 16px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product-3d{
  margin-top:18px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  padding:14px;
}

.product-3d__title{
  margin:0 0 10px 0;
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:rgba(255,255,255,.76);
}

.product-3d__box{
  height:280px;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
}

.product-3d__box model-viewer{
  width:100%;
  height:100%;
  background:transparent;
}

.product-switch{
  margin-top:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.product-switch__btn{
  height:36px;
  padding:0 14px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  text-decoration:none;
  font-size:12px;
  font-weight:900;
  color:rgba(255,255,255,.88);
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.05);
}

.product-switch__btn:hover{
  background:rgba(255,255,255,.10);
  color:white;
}

.product-switch__btn.is-disabled{
  opacity:.42;
  pointer-events:none;
}

.pgallery__stage{
  position: relative;
}

.pgallery__img{
  pointer-events: none; 
}

.pgallery__nav{
  z-index: 10;
  pointer-events: auto;
}

.pgallery__stage{
  position: relative;
  isolation: isolate;         
}

.pgallery__img{
  z-index: 1;                 
  pointer-events: none;       
}

.pgallery__nav{
  z-index: 5;                 
  pointer-events: auto;
}

.pgallery__stage { position: relative; isolation: isolate; }
.pgallery__img { pointer-events: none; z-index: 1; }
.pgallery__nav { z-index: 10; pointer-events: auto; }
.pgallery__thumb { pointer-events: auto; }
.pgallery__thumb img { pointer-events: none; }

.pgallery__stage{
  overflow: hidden;
}

.pgallery__img{
  transform: scale(1.01);
  transition: transform .35s ease;
  will-change: transform;
}

.pgallery__stage:hover .pgallery__img.is-active{
  transform: scale(1.12);
}

.pgallery__stage{
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}

.pgallery__stage.is-zoomed{
  cursor: grab;
}
.pgallery__stage.is-zoomed.is-panning{
  cursor: grabbing;
}


.pgallery__stage::after{
  content: attr(data-hint);
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .02em;
  color: rgba(255,255,255,.86);
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(8px);
  opacity: .92;
  z-index: 20;
  pointer-events: none;
}


.pgallery__img{
  transition: opacity .18s ease, transform .12s ease;
  will-change: transform;
}
.pgallery__stage.is-zoomed{
  cursor: crosshair; 
}

.p-card{
  margin-bottom: 80px;   
}


.section{
  margin: 120px 0 80px;
  text-align: center;
}

.section__eyebrow{
  font-size: 22px;              
  letter-spacing: 0.25em;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 18px;
}

.section__title{
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 50px;
}

@media (max-width: 900px){
  .section{
    margin: 90px 0 60px;
  }

  .section__title{
    font-size: 28px;
  }

  .section__eyebrow{
    font-size: 18px;
  }
}

.section-head{
  width: 100%;
  max-width: 1200px;
  margin: 110px auto 26px;     
  padding: 0 20px;
  text-align: center;
}

.section-title{
  font-size: 26px;             
  font-weight: 950;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.90);
  margin-bottom: 14px;
}

.section-sub{
  font-size: 40px;             
  font-weight: 850;
  letter-spacing: -0.4px;
  color: rgba(255,255,255,.98);
  margin-bottom: 52px;         
}


.grid{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 90px;         
  padding: 0 20px;

  display: grid;
  gap: 22px;

  
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  justify-items: center;        
}


.p-card{
  margin-bottom: 0;            
}


.p-card{
  width: 100%;
  max-width: 380px;
}


@media (max-width: 900px){
  .section-head{
    margin: 80px auto 18px;
  }

  .section-title{
    font-size: 18px;
    letter-spacing: 0.22em;
  }

  .section-sub{
    font-size: 28px;
    margin-bottom: 34px;
  }

  .grid{
    margin-bottom: 70px;
  }
}

@media (max-width: 1100px){
  .mm-nav__inner{
    gap:10px;
    padding:12px 14px;
  }

  .mm-nav__right{
    gap:10px;
    flex:1;
    justify-content:flex-end;
    min-width:0;
  }

  .mm-menu{
    gap:8px;
    overflow-x:auto;
    white-space:nowrap;
    scrollbar-width:none;
    -ms-overflow-style:none;
  }

  .mm-menu::-webkit-scrollbar{
    display:none;
  }

  .mm-menu > a,
  .mm-dd__btn,
  .mm-btn{
    height:36px;
    padding:0 11px;
    font-size:12px;
  }
}

@media (max-width: 900px){
  .hero{
    min-height:360px;
    height:54vh;
  }

  .hero h1{
    font-size:clamp(34px,9vw,58px);
  }

  .hero-cta{
    width:100%;
    gap:8px;
  }

  .hero-cta__btn{
    min-width:0;
    flex:1 1 210px;
  }

  .container{
    padding:48px 16px 72px;
  }

  .panel{
    padding:16px;
    border-radius:18px;
  }

  .product-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .product-top{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }

  .product-top__right{
    width:100%;
    justify-content:space-between;
  }

  .admin-wrap{
    margin:30px auto 60px;
    padding:0 12px;
  }

  .admin-panel{
    padding:16px;
  }

  .admin-head{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }

  .admin-table{
    min-width:680px;
  }
}

@media (max-width: 700px){
  .mm-nav__inner{
    flex-direction:column;
    align-items:stretch;
    gap:8px;
  }

  .mm-brand{
    align-self:flex-start;
  }

  .mm-nav__right{
    flex-direction:column;
    align-items:stretch;
    gap:8px;
  }

  .mm-auth{
    justify-content:flex-end;
  }

  .cart-grid{
    grid-template-columns:1fr;
  }

  .cart-item{
    grid-template-columns:64px 1fr;
    gap:10px;
  }

  .cart-item__sum{
    grid-column:2;
    justify-self:end;
  }

  .cart-item__actions{
    flex-wrap:wrap;
    gap:8px;
  }

  .cart-item__remove{
    width:100%;
  }

  .cart-item__remove .btn{
    width:100%;
  }

  .ticket-msg{
    max-width:92%;
  }

  textarea{
    min-height:110px;
  }
}

@media (max-width: 560px){
  .section-head{
    margin:56px auto 14px;
    padding:0 12px;
  }

  .section-title{
    font-size:14px;
    letter-spacing:.16em;
  }

  .section-sub{
    font-size:22px;
    margin-bottom:24px;
  }

  .grid{
    padding:0 12px;
    gap:14px;
    margin-bottom:44px;
  }

  .p-card{
    max-width:100%;
  }

  .back-to-top{
    width:40px;
    height:40px;
    right:10px;
    bottom:10px;
  }
}

@media (max-width: 980px) and (orientation: portrait){
  .mm-nav{
    position:sticky;
    top:0;
  }

  .mm-nav__inner{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:8px;
    padding:10px 12px;
  }

  .mm-brand{
    flex:0 0 auto;
  }

  .mm-nav__right{
    flex:1;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:flex-end;
    gap:8px;
    min-width:0;
  }

  .mm-auth{
    display:flex;
    gap:8px;
    margin-left:auto;
  }

  .mm-menu{
    order:3;
    flex:1 1 100%;
    display:flex;
    gap:6px;
    overflow-x:auto;
    white-space:nowrap;
    padding-bottom:2px;
    scrollbar-width:none;
    -ms-overflow-style:none;
  }

  .mm-menu::-webkit-scrollbar{
    display:none;
  }

  .mm-menu > a,
  .mm-dd__btn,
  .mm-btn{
    height:34px;
    padding:0 10px;
    font-size:12px;
    border-radius:10px;
  }

  .mm-cart{
    width:34px;
    height:34px;
    border-radius:10px;
  }

  .mm-dd{
    position:relative;
  }

  .mm-dd__panel{
    position:fixed;
    top:58px;
    left:12px;
    right:12px;
    min-width:0;
    border-radius:12px;
    display:none;
    z-index:1400;
    background:rgba(8,12,20,.98);
  }

  .mm-dd.is-open .mm-dd__panel{
    display:block;
  }

  .hero{
    width:100%;
    margin-left:0;
    height:48svh;
    min-height:280px;
    max-height:430px;
  }

  .hero img,
  .hero video{
    object-position:center center;
  }

  .hero-content{
    padding:0 12px;
  }

  .hero h1{
    font-size:clamp(30px,9vw,48px);
    line-height:1;
  }

  .hero-copy{
    gap:12px;
    width:100%;
  }

  .hero-cta{
    width:100%;
    gap:8px;
    display:grid;
    grid-template-columns:1fr;
  }

  .hero-cta__btn{
    min-width:0;
    width:100%;
  }

  .container{
    padding:36px 12px 60px;
  }

  .panel{
    padding:14px;
    border-radius:16px;
  }

  .section-head{
    margin:52px auto 14px;
    padding:0 12px;
  }

  .section-title{
    font-size:14px;
    letter-spacing:.14em;
  }

  .section-sub{
    font-size:22px;
    margin-bottom:24px;
  }

  .grid{
    padding:0 12px;
    gap:12px;
    margin-bottom:48px;
  }

  .p-card{
    max-width:100%;
  }

  .product-wrap,
  .auth-wrap,
  .admin-wrap{
    padding:0 12px;
  }

  .admin-table-wrap{
    overflow:auto;
  }

  .admin-table{
    min-width:640px;
  }

  .cart-grid{
    grid-template-columns:1fr;
    gap:12px;
  }

  .cart-item{
    grid-template-columns:64px 1fr;
    gap:10px;
  }

  .cart-item__sum{
    grid-column:2;
    justify-self:end;
  }

  .ticket-msg{
    max-width:92%;
  }
}

@media (max-width: 900px) and (orientation: portrait){
  .mm-nav__inner{
    display:flex !important;
    flex-wrap:wrap !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:8px !important;
    padding:10px 12px !important;
  }

  .mm-brand{
    flex:0 0 auto !important;
  }

  .mm-nav__right{
    flex:1 1 auto !important;
    display:flex !important;
    flex-wrap:wrap !important;
    align-items:center !important;
    justify-content:flex-end !important;
    gap:8px !important;
    min-width:0 !important;
    width:auto !important;
  }

  .mm-auth{
    order:2 !important;
    margin-left:auto !important;
    display:flex !important;
    align-items:center !important;
    gap:8px !important;
  }

  .mm-menu{
    order:3 !important;
    width:100% !important;
    flex:0 0 100% !important;
    display:flex !important;
    align-items:center !important;
    gap:6px !important;
    overflow-x:auto !important;
    white-space:nowrap !important;
    padding-bottom:2px !important;
  }

  .mm-menu > a,
  .mm-dd__btn,
  .mm-btn{
    height:34px !important;
    padding:0 10px !important;
    font-size:12px !important;
    border-radius:10px !important;
  }

  .mm-cart{
    width:34px !important;
    height:34px !important;
    border-radius:10px !important;
  }

  .mm-dd__panel{
    position:fixed !important;
    top:62px !important;
    left:10px !important;
    right:10px !important;
    min-width:0 !important;
    max-height:60vh !important;
    overflow:auto !important;
    display:none !important;
    z-index:1600 !important;
    border-radius:12px !important;
    background:rgba(8,12,20,.98) !important;
  }

  .mm-dd.is-open .mm-dd__panel{
    display:block !important;
  }

  .hero{
    width:100% !important;
    margin-left:0 !important;
    height:46svh !important;
    min-height:260px !important;
    max-height:420px !important;
  }

  .hero video,
  .hero img{
    object-position:center center !important;
    transform:none !important;
    filter:brightness(.9) contrast(1.06) saturate(1.03);
  }

  .hero::after{
    background:linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.58)) !important;
  }

  .hero-content{
    padding:0 12px !important;
  }

  .hero h1{
    font-size:clamp(30px,9vw,46px) !important;
    line-height:1.02 !important;
  }
}

/* designz vs visualz split mode */
#featured, #designz, #bikes, #rider, #visualz { scroll-margin-top: 110px; }

body.split-shop{
  --visual-fade: 0;
  position: relative;
}

.container#shop{
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

body.split-shop .hero-cta__btn,
body.split-shop .panel,
body.split-shop .admin-panel,
body.split-shop .product-shell,
body.split-shop .p-card,
body.split-shop .card,
body.split-shop .btn,
body.split-shop .mm-btn,
body.split-shop .input,
body.split-shop select,
body.split-shop textarea,
body.split-shop .mm-cart,
body.split-shop .footer__social,
body.split-shop .pgallery__thumb,
body.split-shop .pgallery__nav{
  border-radius: 6px;
}

body.split-shop .hero-cta__btn{
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255,255,255,.24);
  background: rgba(8,12,18,.7);
}

.split-head{
  margin-top: 34px;
  margin-bottom: 20px;
  padding: 6px 0;
  position: relative;
  text-align: center;
}

.split-head .section-title{
  font-size: clamp(16px, 2.2vw, 28px);
  letter-spacing: .12em;
  font-weight: 900;
  line-height: 1;
  text-transform: none;
  transition: color .28s ease, text-shadow .28s ease;
}

.split-head .section-sub{
  margin: 8px auto 0;
  font-size: clamp(18px, 2.9vw, 42px);
  font-weight: 800;
  max-width: 24ch;
  line-height: 1.08;
  text-align: center;
  transition: color .28s ease;
}

.split-head::before{
  content: "";
  display: block;
  width: min(340px, 72vw);
  height: 2px;
  margin: 0 auto 10px;
  border-radius: 0;
  opacity: .88;
}

.split-head--designz::before{
  background: linear-gradient(90deg, rgba(209,255,26,.95), rgba(209,255,26,.32));
}

.split-head--visualz::before{
  background: #0900ff;
}

.split-head--designz .section-title{
  color: #d1ff1a;
  text-shadow: 0 0 14px rgba(209,255,26,.22);
}

.split-head--visualz .section-title{
  color: #0900ff;
  text-shadow: none;
}

.split-head--designz .section-sub{
  color: rgba(214,255,80,.96);
}

.split-head--visualz .section-sub{
  color: #0900ff;
  text-shadow: none;
}

body.split-shop.visualz-mode,
body.split-shop[data-mode='visualz']{
  --mint: #0900ff;
}

body.split-shop.visualz-mode .mm-btn--ghost,
body.split-shop.visualz-mode .btn.ghost,
body.split-shop.visualz-mode .p-btn--ghost{
  background: rgba(9,0,255,.12);
  border-color: rgba(9,0,255,.34);
}

body.split-shop.visualz-mode .mm-cart__badge{
  background: #0900ff;
  color: #eef0ff;
}

.visualz-packages{
  width:min(var(--max), 100%);
  margin:4px auto 40px;
  padding:0 8px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:16px;
}

.visualz-packages__card{
  flex:0 1 calc((100% - 48px) / 4);
  min-width:240px;
  max-width:320px;
  border:1px solid rgba(70,110,255,.48);
  border-top:3px solid #1b35ff;
  background:linear-gradient(180deg, rgba(18,27,48,.98), rgba(8,12,20,.98));
  box-shadow:0 20px 42px rgba(0,0,0,.52), inset 0 1px 0 rgba(170,190,255,.14);
  border-radius:12px;
  padding:18px;
  display:grid;
  gap:12px;
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.visualz-packages__card:hover{
  transform:translateY(-2px);
  border-color:rgba(109,148,255,.78);
  box-shadow:0 24px 48px rgba(0,0,0,.58), 0 0 0 1px rgba(81,117,255,.22), inset 0 1px 0 rgba(204,217,255,.2);
}

.visualz-packages__card h3{
  margin:0;
  font-size:19px;
  line-height:1.2;
  color:#ffffff;
}

.visualz-packages__card p{
  margin:0;
  color:rgba(238,244,255,.92);
  font-size:14px;
  line-height:1.45;
}

.visualz-packages__meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
}

.visualz-packages__badge,
.visualz-packages__tag{
  font-size:11px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.visualz-packages__badge{
  color:#e8edff;
  background:rgba(27,53,255,.25);
  border:1px solid rgba(117,149,255,.42);
  border-radius:4px;
  padding:4px 7px;
}

.visualz-packages__tag{
  color:#b8c9ff;
}

.visualz-packages__card ul{
  margin:0;
  padding-left:16px;
  display:grid;
  gap:6px;
}

.visualz-packages__card li{
  color:rgba(229,236,255,.9);
  font-size:13px;
  line-height:1.35;
}

.visualz-packages__facts{
  margin-top:auto;
  display:grid;
  gap:4px;
  padding-top:10px;
  border-top:1px solid rgba(121,150,255,.34);
}

.visualz-packages__facts strong{
  color:#4c6bff;
  font-size:15px;
  letter-spacing:.01em;
}

.visualz-packages__facts span{
  font-size:12px;
  color:rgba(217,227,255,.92);
}

.visualz-packages__card--featured{
  border-color:rgba(147,174,255,.72);
  border-top-color:#86a5ff;
  background:linear-gradient(180deg, rgba(31,45,86,.98), rgba(11,17,33,.98));
  box-shadow:0 26px 50px rgba(4,8,24,.66), 0 0 0 1px rgba(116,145,255,.32);
}

.visualz-briefing{
  width:min(var(--max), 100%);
  margin:0 auto 44px;
  padding:18px 20px;
  border-radius:14px;
  border:1px solid rgba(89,126,255,.5);
  background:
    radial-gradient(760px 220px at 10% -40%, rgba(92,129,255,.26), transparent 70%),
    linear-gradient(180deg, rgba(15,24,45,.96), rgba(8,12,22,.96));
  box-shadow:0 24px 54px rgba(2,6,19,.55), inset 0 1px 0 rgba(170,194,255,.15);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.visualz-briefing__content{
  display:grid;
  gap:10px;
  max-width:760px;
}

.visualz-briefing__kicker{
  margin:0;
  font-size:11px;
  font-weight:900;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:#9eb4ff;
}

.visualz-briefing h3{
  margin:0;
  font-size:30px;
  line-height:1.06;
  color:#f4f7ff;
}

.visualz-briefing p{
  margin:0;
  font-size:15px;
  line-height:1.45;
  color:rgba(225,234,255,.9);
}

.visualz-briefing__tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.visualz-briefing__tags span{
  height:28px;
  padding:0 10px;
  border-radius:8px;
  display:inline-flex;
  align-items:center;
  font-size:12px;
  font-weight:800;
  color:#dbe5ff;
  border:1px solid rgba(126,155,255,.4);
  background:rgba(31,48,99,.45);
}

.visualz-briefing__actions{
  display:flex;
  flex-direction:column;
  gap:10px;
  min-width:230px;
}

.visualz-briefing__btn{
  height:42px;
  padding:0 14px;
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:13px;
  font-weight:900;
  letter-spacing:.02em;
  transition:transform .18s ease, filter .18s ease, background .18s ease, border-color .18s ease;
}

.visualz-briefing__btn:hover{
  transform:translateY(-1px);
  filter:brightness(1.05);
}

.visualz-briefing__btn--primary{
  color:#f5f8ff;
  border:1px solid rgba(125,156,255,.64);
  background:linear-gradient(180deg, #2f54ff, #1f3aff);
  box-shadow:0 10px 24px rgba(28,62,255,.32);
}

.visualz-briefing__btn--ghost{
  color:#dce6ff;
  border:1px solid rgba(116,146,255,.45);
  background:rgba(30,46,94,.45);
}

@media (max-width: 900px){
  .split-head{
    margin-top: 24px;
    margin-bottom: 14px;
    padding: 4px 0;
  }
  .split-head .section-title{
    letter-spacing: .09em;
  }
  .split-head .section-sub{
    max-width: 100%;
  }

  .visualz-packages{
    justify-content:center;
    padding:0 12px;
  }

  .visualz-packages__card{
    flex:0 1 calc((100% - 16px) / 2);
    min-width:260px;
    max-width:none;
  }

  .visualz-briefing{
    margin:0 auto 36px;
    padding:16px;
    flex-direction:column;
    align-items:flex-start;
  }

  .visualz-briefing h3{
    font-size:26px;
  }

  .visualz-briefing__actions{
    width:100%;
    min-width:0;
    flex-direction:row;
  }

  .visualz-briefing__btn{
    flex:1;
  }
}

@media (max-width: 620px){
  .visualz-packages{
    justify-content:stretch;
  }

  .visualz-packages__card{
    flex:1 1 100%;
    min-width:0;
  }

  .visualz-briefing h3{
    font-size:22px;
  }

  .visualz-briefing p{
    font-size:14px;
  }

  .visualz-briefing__actions{
    flex-direction:column;
  }
}

/* subtle gray base + minimal accent glow */
body{
  background-color:#0f1116;
  background-image:
    radial-gradient(980px 460px at 50% -12%, rgba(255,255,255,.07), transparent 66%),
    radial-gradient(760px 320px at 22% 10%, rgba(209,255,26,.045), transparent 72%),
    radial-gradient(820px 340px at 78% 72%, rgba(9,0,255,.05), transparent 74%),
    linear-gradient(180deg, #11141a 0%, #0b0e14 100%);
  background-repeat:no-repeat;
  background-size:100% 760px, 100% 100%, 100% 100%, 100% 100%;
}

.mm-nav{
  background:rgba(10,13,19,.72);
}

.split-head--designz,
.split-head--visualz{
  position:relative;
}

.split-head--designz::after,
.split-head--visualz::after{
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  top:-18px;
  width:min(520px, 88vw);
  height:130px;
  pointer-events:none;
  filter:blur(26px);
  opacity:.18;
}

.split-head--designz::after{
  background:radial-gradient(closest-side, rgba(209,255,26,.75), transparent 70%);
}

.split-head--visualz::after{
  background:radial-gradient(closest-side, rgba(9,0,255,.8), transparent 70%);
}
